A table containing the names of the files to be appended.
In a generic sense I want to do the following:
select *
from TableA
do name="TableB"," TableD",......" TableX"
union select *
from name;
end;
Hope that makes it simpler.
Thanks...
User Profile
Collapse
-
I want to export the table as an Excel spreadsheet. I can generate the list of tables in a driver table....Leave a comment:
-
Concatenating many tables
I am a new Access use and need to concatenate (UNION) many tables. I am currently doing it "by hand":
SELECT *
FROM [TestA]
UNION SELECT * FROM [TestB];
UNION SELECT * FROM [TestD];
.....
UNION SELECT * FROM [TestX];
I would like to do this with a loop where I can specify TestA, TestB, .... TestX.
The table names are abitrary, not Table1, Table2.......
No activity results to display
Show More
Leave a comment: