I want to know how to create a copy of any table with data in SQL Server.
Thank you.
Loading
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.
Satyapriya NayakPosted Jul 9, 2012, 12:19 PM
If we want to copy the structure as well as records
select * into newtable from oldtable
SELECT *
INTO employee1
FROM employee
Thanks