Requires Free Membership to View
INSERT INTO new_table (columnA) SELECT columnB FROM old_table;If you need to update a column in one table based on the values in another, then you will need to figure out which column maps rows from one table to the other. In my example below, I'll call this column the key_column. The UPDATE command can look like the following:
UPDATE new_table SET columnA = (SELECT columnB FROM old_table
WHERE old_table.key_column = new_table.key_column);
This was first published in August 2006

Join the conversationComment
Share
Comments
Results
Contribute to the conversation