I have two tables in access each with the same type of unique identifier. Some records overlap, and some are new additions. Each table has different data. I want to merge these tables. Any help would be appreciated.
IE:
The ones represent data and the blanks NULL fields
Thanks
IE:
Code:
Table 1 ID A B C 2 1 1 1 3 1 1 1 4 1 1 1 Table 2 ID D E F 2 1 1 1 4 1 1 1 5 1 1 1 8 1 1 1 Result ID A B C D E F 2 1 1 1 1 1 1 3 1 1 1 4 1 1 1 1 1 1 5 1 1 1 8 1 1 1
Thanks
Comment