SysIndex - is_unique 和 is_unique_constraint 的黑白差异

发布于 2024-09-15 13:53:58 字数 124 浏览 2 评论 0原文

在 SQL Server 2008 上运行选择查询,sys.indexes 为我提供有关数据库索引定义的信息。

有 2 个字段 is_unique 和 is_unique_constraint。我不明白它们之间的区别。

runing a select query on SQL Server 2008, sys.indexes gives me information on the index define for a database .

There 2 fields is_unique and is_unique_constraint. I dont understand the difference b/w them .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南冥有猫 2024-09-22 13:53:58

希望这个简单的演示能让您更加清楚。表 X 上的索引将设置两个值,而表 Y 上的索引将仅设置 is_unique。

create table X (
    id int CONSTRAINT x_is_unique UNIQUE
)

create table Y (
    id int
)

create unique index y_is_unique on Y(id)

select name, is_unique, is_unique_constraint
    from sys.indexes
    where object_id in (object_id('X'), object_id('Y'))
        and name is not null

drop table X
drop table Y

Hopefully, this simple demo will make things clearer for you. The index on table X will have both values set, while the index on table Y will have only is_unique set.

create table X (
    id int CONSTRAINT x_is_unique UNIQUE
)

create table Y (
    id int
)

create unique index y_is_unique on Y(id)

select name, is_unique, is_unique_constraint
    from sys.indexes
    where object_id in (object_id('X'), object_id('Y'))
        and name is not null

drop table X
drop table Y
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文