Input records from one table to another

  • Thread starter Thread starter Ben
  • Start date Start date
B

Ben

Hi...here's what i need to do....extract data from a table that matched a
specific date and input that data into a new table

Appreciate your help :-)
 
Hi,
best - is to use INSERT (append) or make-table query - first make a select
query, which extract data from a table, then change query type to append or
make-table query and then specify existing table (append query) or new
table (make-table query )

--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com
 
Thats great...thanks

Alex Dybenko said:
Hi,
best - is to use INSERT (append) or make-table query - first make a select
query, which extract data from a table, then change query type to append or
make-table query and then specify existing table (append query) or new
table (make-table query )

--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com
 
Back
Top