Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

Spalte mit Primärschlüssel in vorhandener Tabelle hinzufügen

Wenn Sie möchten, dass SQL Server automatisch Werte für die neue Spalte bereitstellt, machen Sie daraus eine Identität.

ALTER TABLE Product_Details DROP COLUMN Product_Detail_ID
GO
ALTER TABLE Product_Details ADD Product_Detail_ID int identity(1,1) not null
GO
ALTER TABLE Product_Details
add CONSTRAINT pk_Product_Detils_Product_Detail_ID primary key(Product_Detail_ID)
GO