Hello all,
I have two tables. I have simplified it to:
table1: ID, fromEmail
table2: ID, fromEmail (blank Column)
The ID's of table1 and table2 match, there may be repeated in table2. I want the email fields copied to table2 that have the same ID as table1. I have this so far.
Code:
INSERT INTO table2.fromEmail WHERE table2.ID=table2.ID
Of course that won't do it but I don't know how to get the data from table1. Do I use a select statament? I am so thick
Thank you for any help and direction