D
djcamo
Hi All,
I am using the contacts db that comes standard with MS Access. What I
am trying to do is create a query that gives me all the contacts that
have had no calls. I have no trouble finding all the ones that have
had a call, I just can't do the opposite. This is what I have so far
but it give nil results.
SELECT Contacts.CompanyName, Calls.CallID
FROM Contacts INNER JOIN Calls ON Contacts.ContactID = Calls.ContactID
WHERE (((Contacts.Industry)<>"travel") AND ((Calls.CallID) Is Null));
Thanks in advance for any help
David.
I am using the contacts db that comes standard with MS Access. What I
am trying to do is create a query that gives me all the contacts that
have had no calls. I have no trouble finding all the ones that have
had a call, I just can't do the opposite. This is what I have so far
but it give nil results.
SELECT Contacts.CompanyName, Calls.CallID
FROM Contacts INNER JOIN Calls ON Contacts.ContactID = Calls.ContactID
WHERE (((Contacts.Industry)<>"travel") AND ((Calls.CallID) Is Null));
Thanks in advance for any help
David.