How do I write/create the union statement?? thanks
If Table 1 is [spring]
Table 2 is [summer]
Table 3 is [winter]
SELECT * FROM [Spring]
UNION
SELECT * FROM [Summer]
UNION
SELECT * FROM [Winter]
Note that UNION will remove duplicates - i.e. if there are records in Spring
and Summer which are identical in all fields, you'll see only one of those
records. Use UNION ALL if you want to avoid this duplicate checking (and if
you're sure there will never be duplicates, use UNION ALL to make the query
run faster since Access won't need to check).
I hope you're in the process of combining these tables into one - storing data
(a season) in tablenames is very bad design, for exactly the reason you're now
discovering!