exclude records

slimjen1

Registered User.
Local time
Today, 08:03
Joined
Jun 13, 2006
Messages
562
All, I am using 2010 Access I have a query that returns what I need. But now I want to exclude records that are in another table. How do I exclude all records that are in another table. My first thought was to use the where clause but I want all the records to be excluded in the table.
thanks
 
You LEFT JOIN that other table (show all from original table), then you bring down the primary key from that new table and put 'IS NULL' in its criteria.
 
Thanks so much. I couldn't think of this:)
 

Users who are viewing this thread

Back
Top Bottom