Moving records from one table to another

F

filnigeria

i want to copy the whole of one table (which is a temporary one) to the main
table
i want to do this before i delete the temporary tables
i have the delete scripts and all that all i need is how to move them before
i delete them
 
R

Ron Weiner

Why not execute a Query that does the heavy lifting. Something like

INSERT INTO tblMain SELECT * FROM tblTemp

might do it for you if the data structire of both tables are the same.

Ron W
 

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