I have two tables, "Table1" and "Table2" and I would like to merge them, unfortunately I can't create a primary key for Table2.
Now Table1 contains various sections of data "First Name", "Last Name","Addr" and "Phone", Table2 has the exact same columns as well.
What I would like to do is if a record on Table1 and and one on Table2 have the same "First Name" and "Last Name" to copy the "Addr" and "Phone" into table1. Is there anyway to do this?
Table1 has many more records then Table2, but it is older and has more mistakes regarding the phone numbers and addresses, I guess I'm looking for a way to incorporate this new data into the old data.
Now Table1 contains various sections of data "First Name", "Last Name","Addr" and "Phone", Table2 has the exact same columns as well.
What I would like to do is if a record on Table1 and and one on Table2 have the same "First Name" and "Last Name" to copy the "Addr" and "Phone" into table1. Is there anyway to do this?
Table1 has many more records then Table2, but it is older and has more mistakes regarding the phone numbers and addresses, I guess I'm looking for a way to incorporate this new data into the old data.
Comment