Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Compare table1 to table2

Status
Not open for further replies.

jepatte

Programmer
Jul 4, 2005
75
US
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?
 
You would want to use an EXISTS query for this.
Code:
insert into t1
select *
from t2
where NOT EXISTS (SELECT * from t1 where t1.LName = t2.LName and t1.FName = t2.FName and t1.Zip = t2.Zip)

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top