
Signature
---------------------------------------------------
These kind of queries are usually solved by using an INNER JOIN, an Outer
Join, the IN, the Not IN, the EXISTS (...) or the NOT EXISTS (...)
operators. Finally, you can combine all these queries by using the UNION
operator. However, with Access, you cannot use the Query Designed in
graphic mode when you want to use the UNION operator.
This looks like a school assignement?
You don't give us any schema information, so it's hard to give you some
examples; however, here are some:
Select * From Table1 where Table1.Id not In (Select Distinct Id from Table2
Where Table2.Id is not Null)
Select * From Table1 where Not Exists (Select * from Table2 where Table2.Id
= Table1.Id)

Signature
Sylvain Lafontaine, ing.
MVP - Technologies Virtual-PC
E-mail: http://cerbermail.com/?QugbLEWINF
>I have a database system of three table consisting of partly identical
> information.
[quoted text clipped - 13 lines]
> Many Thanks!
> Sander