Вопрос

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.

Это было полезно?

Решение

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top