SysIndex - is_unique 和 is_unique_constraint 的黑白差异
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这个简单的演示能让您更加清楚。表 X 上的索引将设置两个值,而表 Y 上的索引将仅设置 is_unique。
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.