How do I append non-matching records

O

Omi

I want to append records to tableB only when the key field in tableA does not
match the key field in tableB
 
J

Jeff Boyce

Omi

We're not there. We can't see your tables or relationships.

Are you saying that you have two tables with identical structure, and you're
adding to one table only if the record isn't already in another table? If
so, why?! In a well-normalized relational database, you usually don't
need/have multiple tables with the same structure.

More info, please...

Regards

Jeff Boyce
Microsoft Access MVP

--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.

Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.

You can thank the FTC of the USA for making this disclaimer
possible/necessary.
 
D

Douglas J. Steele

INSERT INTO TableB (ID, Field1, Field2, Field3)
SELECT ID, Field1, Field2, Field3
FROM TableA
WHERE TableA.ID NOT IN (SELECT DISTINCT ID FROM TableB)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top