Shadow copy using Sql. Write a query to create a clone of existing table without using Create Command. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Shadow copy using Sql. Write a query to create a clone of existing table without using Create Command.

17th Nov 2016, 3:15 PM
Raghunath S
Raghunath S - avatar
2 Answers
+ 2
Try this... SELECT * INTO NewTableName FROM CurrentTableName
19th Nov 2016, 2:48 PM
Ben
+ 1
I am frequently using below query.. select * into new table from old table.
1st Jan 2017, 11:57 AM
Pradeep Gupta
Pradeep Gupta - avatar