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 FROM T2 WHERE LNAme + FName + Zip NOT IN (SELECT LName + FName + Zip FROM T1)
Is this the only way to do this?
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 FROM T2 WHERE LNAme + FName + Zip NOT IN (SELECT LName + FName + Zip FROM T1)
Is this the only way to do this?