At the moment the statement I have is fairly simple:
SELECT [Qry_Business Addresses].*, [Qry_Home Addresses].*
FROM [Qry_Business Addresses], [Qry_Home Addresses]
WHERE ((([Qry_Business Addresses].[Contact ID])<>[Qry_Home Addresses].[contact ID]));
Now when I run it, it gives me output without...
I have two queries that I have created that are based off one table. One has business addresses, and one has home addresses. The contact ID field is the primary key of the table and is in both of the queries. I'm trying to build a SQL statement that pulls all the records from both queries...
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.