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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MERGE missing records - better way?

Status
Not open for further replies.

groleau

Programmer
Apr 12, 2006
110
0
0
US
table S (input) has columns A, B

table K (keep) renames them C, D and adds E

Need to add new records if not already there, leaving E null in that case.

Seems like there should be a simpler way than
Code:
INSERT INTO K (C, D)
SELECT A, B
FROM   S
WHERE NOT EXISTS (A, B)
      IN (SELECT C, D FROM K)
SQL cookbook tells about Oracle's MERGE but offers no workaround for the others


--
Wes Groleau
 
It's hard to tell, but I think you want to use this syntax. Try running the select first (without the insert) to make sure you are getting the right records.

Code:
[COLOR=blue]INSERT[/color] [COLOR=blue]INTO[/color] K (C, [COLOR=blue]D[/color])
[COLOR=blue]SELECT[/color] A, B
[COLOR=blue]FROM[/color]   S
       [COLOR=#FF00FF]Left[/color] [COLOR=blue]Join[/color] K
         [COLOR=blue]On[/color]  S.A = K.C
         And S.B = K.D
[COLOR=blue]WHERE[/color]  K.C [COLOR=blue]Is[/color] NULL

-George

"the screen with the little boxes in the window." - Moron
 
Wow, that was quick. I was about to post that maybe I should make a view to show the missing records, and then insert from that.

It's not a big enough data set to worry about efficiency.

thanks, your syntax is easier to read.

--
Wes Groleau
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top