Hi and thanks in advance,
I am using Access 2003.
I am trying to formulate SQL for an INSERT INTO query that UNIONS 6 queries into the table ... but without success.
This is what I have so far, any idea where I am going wrong?
INSERT into Revenue
SELECT * FROM qryRevenue1
UNION ALL
SELECT * FROM qryRevenue2
UNION ALL
SELECT * FROM qryRevenue3
UNION ALL
SELECT * FROM qryRevenue4
UNION ALL
SELECT * FROM qryRevenue5
UNION ALL
SELECT * FROM qryRevenue6
Thanks
Deutz