唯一约束,排除 NULL 值
我的表中有一个列,其中所有值必须是唯一的或 NULL。
我尝试向该列的表中添加一个唯一键,但这似乎意味着我只能有 1 个 NULL 值?
如何设置约束以使所有值都是唯一的,除非它们为 NULL?
Possible Duplicate:
The proper way to implement unique constraint that allows multiple NULL values in SQL Server
I have a column in my table where all the values must either be unique, or NULL.
I tried adding a Unique Key to the table for this column, but this seems to mean I can only have 1 NULL value?
How can I set a constraint so that all the values are unique, unless they are NULL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL Server 2008 具有允许这样做的过滤索引,但它们在 2005 中不可用。在 SQL Server 2005 中,您可以使用定义创建索引视图
,然后在其上创建唯一的聚集索引。
SQL Server 2008 has filtered indexes that allow this but they are not available in 2005. In SQL Server 2005 you can create an indexed view with definition
Then create a unique clustered index on that.