C
CuriousMark
I have two similar tables. The second table was created from the first and
then had data modified. I need to update the first table with the modified
table. I can't figure out to uniquely identify the records for updating
because the record IDs were not copied between the tables. The table
structures are like this:
Table1
LastName, FirstName, FieldA, FieldB, FieldC
Table2
LastName, FirstName, FieldA, FieldB, FieldD
How can I update FieldA and FieldB in Table1 with data from Table2 if the
data has changed, and add FieldD to Table1, matching the LastName and
FirstName?
Thanks very much.
then had data modified. I need to update the first table with the modified
table. I can't figure out to uniquely identify the records for updating
because the record IDs were not copied between the tables. The table
structures are like this:
Table1
LastName, FirstName, FieldA, FieldB, FieldC
Table2
LastName, FirstName, FieldA, FieldB, FieldD
How can I update FieldA and FieldB in Table1 with data from Table2 if the
data has changed, and add FieldD to Table1, matching the LastName and
FirstName?
Thanks very much.