Data from one table to another

G

Guest

I want to transfer records from one table to another in the same database and
then delete the records in the original table. I am using the first table as
a temporary table and it needs to be cleared out after they information is
posted to the permanent table.

Any help is greatly appreciated.

Thanks
 
A

Alex White MCDBA MCSE

If the field layout is similar between the two tables an "insert into"
append query is what you need.
 
T

tina

you can use an Append query to copy the records from the temporary table to
the permanent table. then use a Delete query to delete the records from the
temporary table. look up "append query" and "delete query" in Access Help
for details.

hth
 
G

Guest

I really appreciate the help. It worked great.

tina said:
you can use an Append query to copy the records from the temporary table to
the permanent table. then use a Delete query to delete the records from the
temporary table. look up "append query" and "delete query" in Access Help
for details.

hth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top