stupid question :)

D

DM

I have a stupid question :)))
I have two tables (Table1 and Table2), with identical structure; each has
three columns: ClientID, ClientName, ClientBalance. What I need is a query
that will select those clients from Table2 that do not exist in Table1.
Can anyone help me?
Thanks.
 
V

Van T. Dinh

SELECT Table2.*
FROM Table2
LEFT JOIN Table1
WHERE Table1.ClientID Is Null

HTH
Van T. Dinh
MVP (Access)
 

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