SQL Server 2005如何创建唯一约束?

如何在SQL Server 2005中的现有表上创建唯一约束?

我正在寻找TSQL以及如何在数据库图中进行操作。


Helenr
浏览 437回答 3
3回答

白衣非少年

SQL命令是:ALTER TABLE <tablename> ADD CONSTRAINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <constraintname> UNIQUE NONCLUSTERED&nbsp; &nbsp; (&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <columnname>&nbsp; &nbsp; )请参阅此处的完整语法。如果要从数据库图中执行此操作:右键点击表格,然后选择“索引/键”单击添加按钮添加新索引在右侧的属性中输入必要的信息:所需的列(单击省略号按钮进行选择)将“唯一”设置为“是”给它起一个合适的名字

Smart猫小萌

在SQL Server Management Studio Express中:右键单击表,选择“&nbsp;修改”或“&nbsp;设计”(对于更高版本)右键单击字段,选择索引/键...点击添加对于“&nbsp;列”,选择要唯一的字段名称。对于类型,选择唯一键。点击关闭,保存表格。

catspeake

ALTER TABLE dbo.<tablename> ADD CONSTRAINT&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <namingconventionconstraint> UNIQUE NONCLUSTERED&nbsp; &nbsp; (&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <columnname>&nbsp; &nbsp; ) ON [PRIMARY]
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

SQL Server