Copy one of the tables and rename it as a general table. Then run a series of update queries to transfer the information from the other tables to the general table.
hth
Jeff Bridgham
Purdue University
Graduate School
Data Analyst
Select Q.* INTO NewTable
From
(
SELECT 1 As MonthNumber, A.* FROM January A
UNION ALL
SELECT 2, A.* FROM February A
UNION ALL
SELECT 3, A.* FROM March A
etc.
) As Q
So that you can identify the records from each table.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.