this is one way, wouldnt the right outer join work?
Main Topics
Browse All TopicsHello experts, i am kinda confused here with the exact way of getting my data.
I have 2 similar tables
TABLE A ( VID, NAME, DATE)
TABLE B ( VID, NAME, DATE)
Now i have to update table A with Table B records doing a join on VID, if they match update it, else insert the unmatched records into table A, in either way i need to have all the records in table a from table b.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This can be done with one statement using MERGE in SQL Server 2008. Refer this URL to mimic the MERGE.
http://sqlserver-tips.blog
Business Accounts
Answer for Membership
by: angelIIIPosted on 2009-11-02 at 07:52:51ID: 25720466
with sql 2005, you cannot do that in 1 statement. e.com/arti cles/Datab ase/ Miscel laneous/UP DATES-with -JOIN-for- everybody. html
you have to update with join first: http://www.experts-exchang
and then insert using a select with LEFT JOIN.
insert into tableA (VID, name, date)
select b.vid, b.name, b.date
from tableB b
left join tableA a
on a.VID = b.VID
WHERE a.VID IS NULL