
Originally Posted by
pbaldy
Presuming each table has Field1, Field2 and Field3, that's going to produce
Table1.Field1, Table1.Field2, Table1.Field3, Table2.Field1, Table2.Field2, Table2.Field3,...
not
Table1.Field1, Table1.Field2, Table1.Field3
Table2.Field1, Table2.Field2, Table2.Field3
I believe so?
Without joins, you'd also get a Cartesian product, but I suspect that's the least of your problems. I suspect you want a UNION query to stack the data from those various sources, and base your append query on that.