What you then want to do is the "Unmatched" query. below is an example:
SELECT tblZtable1.EmployeeID, tblZtable1.LastName, tblZtable1.FirstName
FROM tblZtable1 LEFT JOIN tblZtable2 ON tblZtable1.EmployeeID = tblZtable2.EmployeeID
WHERE (((tblZtable2.EmployeeID) Is Null));
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.