Jul 2, 2002 #1 Alira Programmer Mar 21, 2001 77 CA Hi All! What would be the best way for "removing from table1 - appedning to table2" couple of thousand records at a time? Have a great day!
Hi All! What would be the best way for "removing from table1 - appedning to table2" couple of thousand records at a time? Have a great day!
Jul 2, 2002 #2 fluteplr Programmer Oct 23, 2000 1,599 US Assuming the table structures are the same. insert into table2 select * from table1 You can add field lists if needed as well as a where clause on the select. Deletes are just delete from table1 where (enter your where clause here) Upvote 0 Downvote
Assuming the table structures are the same. insert into table2 select * from table1 You can add field lists if needed as well as a where clause on the select. Deletes are just delete from table1 where (enter your where clause here)