In MySQL, How do I copy a FIELD with all RECORDS from TABLE1 to TABLE2 which corresponds to a primary key ie: EMPLOYEE no.?
TABLE1
TABLE2
EMPLOYEE no.
INSERT INTO table_1(column-1, column-2) SELECT column-1, column-2 FROM table_2;
table_1
column-1
column-2