Append only new records with an append Query

R

ram

Hi to All,

I would like to append only new records to a table based on a report number.
I did use John Version suggestion of createing an unmatched query which gives
me the new records. However when it appends the data there is no report
number included. I think it's because in the criteria the report number needs
to be null.

Can someone help me combine the unmatched query with the append query.

Thanks for any help
 
K

KARL DEWEY

Try this --
INSERT INTO [6600 Course] ( COURSE, BUILD, SET )
SELECT [6600 EMP].*
FROM [6600 EMP] LEFT JOIN [6600 Course] ON [6600 EMP].Lname = [6600
Course].Lname
WHERE ((([6600 Course].Lname) Is Null));
 

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