Domanda

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.

È stato utile?

Soluzione

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top