唯一约束,排除 NULL 值

发布于 2024-11-09 22:01:59 字数 366 浏览 0 评论 0原文

可能的重复:
实现唯一的正确方法SQL Server 中允许多个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最丧也最甜 2024-11-16 22:01:59

SQL Server 2008 具有允许这样做的过滤索引,但它们在 2005 中不可用。在 SQL Server 2005 中,您可以使用定义创建索引视图

CREATE VIEW dbo.Foo
WITH SCHEMABINDING
AS
SELECT bar
FROM dbo.baz
WHERE bar IS NOT NULL

,然后在其上创建唯一的聚集索引。

CREATE UNIQUE CLUSTERED INDEX ix ON dbo.Foo(bar)

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

CREATE VIEW dbo.Foo
WITH SCHEMABINDING
AS
SELECT bar
FROM dbo.baz
WHERE bar IS NOT NULL

Then create a unique clustered index on that.

CREATE UNIQUE CLUSTERED INDEX ix ON dbo.Foo(bar)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文