Create a comined Customer and Supplier Telephone List

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I would like to combine a customer phone list (FirstName, LastName, Phone)
from the Customers Table with a Supplier phone list (FirstName, LastName,
Phone) so that one continous list is create.

I can't seem to create the query although I'm quite good at queries.

Any help would be greatly appreciate.

Thanks

GRD
 
Grd said:
I would like to combine a customer phone list (FirstName, LastName, Phone)
from the Customers Table with a Supplier phone list (FirstName, LastName,
Phone) so that one continous list is create.


SELECT FirstName, LastName, Phone
FROM Customers
UNION
SELECT FirstName, LastName, Phone
FROM Suppliers
ORDER BY LastName
 
That is a "special" query type. I do it using SQL. Not sure if the wizard
offers it or not. If you go to the help files and search for UNION query,
it will give you detailed instructions.
 

Ask a Question

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.

Ask a Question

Back
Top