how to copy data of one table into another table
hw to copy data of one table into another table in sql server 2008
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Riyaz AkhtarPosted Jan 27, 2014, 2:01 AM
vivek upadhyayPosted Jan 25, 2014, 10:10 AM
Riyaz AkhtarPosted Jan 24, 2014, 7:10 AM
INSERT INTO table1
(col1,col2,col3)
SELECT col1,col2,col3 FROM table2
This should solve your problem.
let me know if you face any issue