I have 3 sets of Data from 3 Database sources. My question is how will I find which records match and which did not? its okay to have Nulls in Master table
Table 1:
ID Name
1 AAA
2 BBB
3 CCC
4 DDD
5 EEE
6 FFF
Table 2:
ID City
1 NYC
2 LA
3 SFA
7 ATL
8 HTOWN
100 SJC
Table 3:
ID SSN
3 1111
4 1112
7 1113
5 1114
100 1115
6 1116
Master Table should look something like this (Its OKAY TO HAVE NULLS)
ID Name City SSN
1 AAA NYC NULL
2
3
4
5
6
7
8
100 NULL NULL 1115
YOUR HELP WILL BE GREATLY APPRECIATED?