How do I migrate data from a query to a table

  • Thread starter Thread starter Elias Alli
  • Start date Start date
E

Elias Alli

I need to do this because I have created a table out of
two existing tables and I need to migrate the data in
their...I have populated a query(join) with the
data ..cause of previous problems I have decided to create
a table and populate it with the data from these two
tables as the database should not have been further
normalized
 
I need to do this because I have created a table out of
two existing tables and I need to migrate the data in
their...I have populated a query(join) with the
data ..cause of previous problems I have decided to create
a table and populate it with the data from these two
tables as the database should not have been further
normalized

Change the query to an Append query and append it to the new table.
 
Back
Top