vote up 0 vote down star

I have 2 table TableA and TableB I want to insert all records at a time from TableA to TableB if the records are not in TableB

Please help thank you

flag

3 Answers

vote up 2 vote down

Assuming they are sharing the same primary key.

insert TableB
select A.* 
from TableA A 
left join TableB B ON A.pk = B.pk 
where B.pk is null
link|flag
vote up 2 vote down

This should work

INSERT INTO TableB
SELECT * FROM TableA
EXCEPT
SELECT * FROM TableB
link|flag
vote up 0 vote down

Alternate form of sambo's answer.

INSERT TableB
SELECT *
FROM TableA A
WHERE NOT EXISTS (
    SELECT *
    FROM TableB B
    WHERE A.pk = B.pk )
link|flag
Whoever down marked this is not acting with reason. This works perfectly fine... I do prefer the LEFT JOIN approach when comparing tables, but this is NOT wrong... – Dems Feb 27 at 11:34
+1 to spite the down marker... – Dems Feb 27 at 11:35
Why thank you Dems. In fact it might perform significantly different (better or worse) but it's a very common pattern. – MikeW Feb 27 at 18:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.