Question

Ive got a localDB in VS2013, and I need to copy/clone the structure of a table and make a duplicate of it. How do I do this?

My Google skills are failing me.

P.s. The existing table is called manufaturers and I want the cloned version to be called manufacPt2.

Thanks.

Was it helpful?

Solution

Assuming you want to duplicate/clone the table.

select * into DestinationTable
    from SourceTable
    where 1 = 2

From this website: Copy a table into new table with/without data - SQL Server

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top