Click here to Skip to main content
15,917,645 members
Please Sign up or sign in to vote.
2.33/5 (2 votes)
See more:
how to move data from one table to another table in SQL Server 2008
Posted
Comments
Tom Marvolo Riddle 30-Nov-13 4:43am    
Using Insert into select statement .

Simple:

- insert into the destination table from a select query on the source table
- delete from the source table using same criteria as previous query
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900