Union queries have to be created in SQL view, they can not be created using
the graphical query design grid. To create a union query, start a new query
as usual, then select SQL View from the View menu.
Here's an example that returns company names from the Customers, Shippers,
and Suppliers tables in the Northwind sample database ...
SELECT CompanyName FROM Customers
UNION SELECT CompanyName FROM Suppliers
UNION SELECT CompanyName FROM Shippers
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.