Grabbing Data from Multiple Tables & Pasting it into Another?

  • Thread starter Thread starter Curtis Stevens
  • Start date Start date
C

Curtis Stevens

How do you go about grabbing a record or two and its associated data from
multiple tables and pasting it into another table? Using a append query work?
 
You join the multiple tables on related fields, use criteria to select the
records, and change the query type to append.
 
How do you go about grabbing a record or two and its associated data from
multiple tables and pasting it into another table? Using a append query work?

Yes... but why would you want to store data redundantly? What benefit do you
see from storing this consolidated record in a table which cannot be attained
by just using the select query that grabs the data?
 
Back
Top