I have 2 tables with the same information including: id, name, address, zip code, phone number. However, The ID's are different for the same person on each table. How can I create a crosswalk table to match the id's based on the rest of the information?
EX)
Table1
ID | Name | Address | Zip | Phone
-----------------------------------------------------
1111 | John Doe | 123 Fake St | 12345 | 123-456-7890
-----------------------------------------------------
Table2
ID | Name | Address | Zip | Phone
-----------------------------------------------------
2222 | John Doe | 123 Fake St | 12345 | 123-456-7890
-----------------------------------------------------
Desired Crosswalk
Table1ID | Table2ID
---------------------
1111 | 2222
---------------------
Any insight would be greatly appreciated. Thanks!