How Can I join Two Queries?

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

I have two queries that have similar information that I want to combine into
only one query or file so I can use in a report. I have tried several queries
to combine that information but nothing has worked so far. Does anyone know
how I can combine both queries into only one? (basically I want Query 1 &
Query 2 to join and become one master query with all the information)
 
Great thank you for the tip, but how can I do this using a UNION query? Can
you give me an example on the correct format to use with the fields below.

TABLE A TABLE B

Item# Item#
Description Description
Price Price
 
SELECT [Item#], Description, Price
FROM [Table A]
UNION ALL SELECT [Item#], Description, Price
FROM [Table B];
 

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

Similar Threads

Data Mismatch in Excel 2010 4
UNION QUERY.. 3
Read query records 3
Avoid duplicated item when combining two queries 3
Joining two queries 3
Joining two Dsum 1
Query from expression 2
Combining Queries 4

Back
Top