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.

Était-ce utile?

La 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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top