Combining Queries

G

Guest

Good Day,

I am trying to combine two inventory queries that have the same type of
data, same number and type of fields.

I am trying to create a master query that contains all my data.

Any suggestions?

Brook
 
K

Ken Snell [MVP]

By combine, do you mean you want to show the records from both queries, as
if they were selected by one query?

Assuming yes, use a UNION query.

SELECT * FROM QueryOne
UNION
SELECT * FROM QueryTwo;
 

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

Top