我试图在现有的表名称Product_Details中添加新添加的主键.
添加新列:Product_Detail_ID(int和not null)
我正在尝试向Product_Detail_ID添加主键(请注意:没有其他主键或外键分配给此表)
ALTER TABLE Product_Details ADD CONSTRAINT pk_Product_Detils_Product_Detail_ID PRIMARY KEY(Product_Detail_ID) GO
错误:
The
CREATE UNIQUE INDEX
statement terminated because a duplicate key was found for the object name'dbo.Product\_Details'
and the index name'pk\_Product\_Detils'
. The duplicate key value is (0).
我在这里遗漏了什么吗?我正在使用sql Server 2008 R2.我将不胜感激任何帮助.