Mike1sMike
New member
- Local time
- Today, 16:37
- Joined
- Apr 24, 2020
- Messages
- 16
This has to be easier than I am making it. This union works fine but I am lost as to how to save the unions to a new table, say eoy2020. Thank you to anyone!
SELECT *
FROM eom0920 WHERE (((eom0920.[Row]) Is Not Null))
UNION ALL SELECT *
FROM eom1020 WHERE (((eom1020.[Row]) Is Not Null))
UNION ALL SELECT *
FROM eom1120 WHERE (((eom1120.[Row]) Is Not Null));
SELECT *
FROM eom0920 WHERE (((eom0920.[Row]) Is Not Null))
UNION ALL SELECT *
FROM eom1020 WHERE (((eom1020.[Row]) Is Not Null))
UNION ALL SELECT *
FROM eom1120 WHERE (((eom1120.[Row]) Is Not Null));