I was wondering how I could merge two tables that are serving as a 1:1 relationship (although, no relationship is defined).
[TableA]
ID,field1,field 2,field3
[TableB]
ID,field4,field 5
The query would check for matching ID. If there is a match, TableA Should be amended with the results of TableB.
The final result would be:
[TableA]
ID,field1,field 2,field3,field4 ,field5
After this, TableB would be deleted.
[TableA]
ID,field1,field 2,field3
[TableB]
ID,field4,field 5
The query would check for matching ID. If there is a match, TableA Should be amended with the results of TableB.
The final result would be:
[TableA]
ID,field1,field 2,field3,field4 ,field5
After this, TableB would be deleted.
Comment