I have a Table1 with 3 fields, lastname, firstname, zipcode
Table2 has the same. I want to insert records into Table1 if they are in Table2 but not already in Table1.
So is the best way to see if they exist is do a concatenation....
INSERT INTO T1 (LName, FName, Zip)
SELECT LName, FName, Zip...