I have 2 tables, Table 1 has Name, NameID, and A, B, C fields.
Table 2 has Name, NameID, and D, E fields.
Several of the Names/NameID are the same in both databases. I want my
merged the tables so each record looks like; Name, NameID, A, B, C, D,
E. I have merged them successfully but I am getting two records for
each name, one record for A, B, C fields, and another record for the
D, E fields.
Example,
Name NameID A B C D E
Smith, John 123 X X
Smith, John 123 X X
What I want to see is:
Name NameID A B C D E
Smith, John 123 X X X X
Thanks,
Don
Table 2 has Name, NameID, and D, E fields.
Several of the Names/NameID are the same in both databases. I want my
merged the tables so each record looks like; Name, NameID, A, B, C, D,
E. I have merged them successfully but I am getting two records for
each name, one record for A, B, C fields, and another record for the
D, E fields.
Example,
Name NameID A B C D E
Smith, John 123 X X
Smith, John 123 X X
What I want to see is:
Name NameID A B C D E
Smith, John 123 X X X X
Thanks,
Don
Comment