union query

  • Thread starter Thread starter Guest
  • Start date Start date
Open up a new query.
Switch to SQL View
Start Typing.

SELECT Field1, Field2, Field3
FROM Table1
UNION
SELECT FieldA, FieldB, FieldC
FROM AnotherTable
UNION
....

Lookup help on Union queries for further information.

Basic guidance:
Same number of fields in each query; Matching field types in each column.
 

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