+ 1
Shadow copy using Sql. Write a query to create a clone of existing table without using Create Command.
2 Respuestas
+ 2
Try this...
SELECT *
INTO NewTableName
FROM CurrentTableName
+ 1
I am frequently using below query..
select * into new table from old table.