COMBINING EXISTING TABLES INTO A SINGLE TABLE

R

Ranbir Parmar

How can one combine the existing tables automatically into
a single table as opposed to hard-wiring the table names
into a "UNION" SQL Query.
 
S

Steve Schapel

Ranbir,

Use an Append Query to add the records from one table to the other table.
 
Top