How Can I join Two Queries?

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)
 
A

alex

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
 
K

KARL DEWEY

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

Combining Queries 4
Queries 4
Read query records 3
Union Queries 5
Combine 2 queries from 2 different databases 3
Still grappling with queries 5
Joining two queries 3
Need help creating a Master Query 4

Top