table idea

teiben

Registered User.
Local time
Today, 13:04
Joined
Jun 20, 2002
Messages
462
I have 3 tables, w/the same field names (imported from other db) each have a name, q1, q2, q3, etc. I need to bring them together as one if names are the same in each. (some names differ, from table to table) , any ideas how to accomplish this?
 
You can use an append query to move the data from one table to another
 
Create a select queryjoining all the tables with an inner join. This will return records that exist in all three tables. Then create 3 select queries based on this query to extract the data from each table and union them together.
 

Users who are viewing this thread

Back
Top Bottom