Bemærk
Adgang til denne side kræver godkendelse. Du kan prøve at logge på eller ændre mapper.
Adgang til denne side kræver godkendelse. Du kan prøve at ændre mapper.
Applies to:
SQL Server 2016 (13.x) and later versions
Azure SQL Database
Azure SQL Managed Instance
Azure Synapse Analytics
Analytics Platform System (PDW)
SQL database in Microsoft Fabric
You can duplicate an existing table in SQL Server by using SQL Server Management Studio or Transact-SQL by creating a new table and then copying column information from an existing table.
These steps described duplicate only the structure of a table, not the row data.
Permissions
Requires CREATE TABLE permission in the destination database.
Use SQL Server Management Studio
Duplicate a table
Make sure you are connected to the database in which you want to create the table and that the database is selected in Object Explorer.
In Object Explorer, right-click Tables and select New and then Table....
In Object Explorer right-click the table you want to copy, and select Design. The existing table opens in a separate tab.
Select the columns in the existing table and, from the Edit menu, select Copy, or
Ctrl+Cto copy the column information to your clipboard.Switch back to the new table tab and select the first column of the first row.
From the Edit menu, select Paste or
Ctrl+Vto paste.From the File menu, select Save table name, or
Ctrl+Sto save.In the Choose Name dialog box, type a name for the new table. Select OK. The table will be created and visible in the Object Explorer.
Use Transact-SQL
Duplicate a table in Query Editor
Make sure you are connected to the database in which you want to create the table and that the database is selected in Object Explorer.
Right-click the table you wish to duplicate, point to Script Table as, then point to CREATE to, and then select New Query Editor Window.
Change the name of the table.
Remove any columns that are not needed in the new table.
Select Execute to create the new table. The table will be created and visible in the Object Explorer.