Union help

G

Golfinray

I need to put four tables together in a union query into one table: 07-09 A,
07-09 B, 07-09 C and 07-09 D. I'm not quite familier with the syntax of
unions. Please help. Thanks a bunch!!!
 
K

KARL DEWEY

If they all have the same fields then this will do it --
SELECT *
FROM [07-09 A]
UNION ALL SELECT *
FROM [07-09 B]
UNION ALL SELECT *
FROM [07-09 C]
UNION ALL SELECT *
FROM [07-09 D];
 

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