作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于“大”表,是否有任何理由不对可选列的索引进行过滤?
因此,对于列 AAA 上的索引(因为人们可以搜索 AAA),我可以将过滤器设置为 ([AAA] IS NOT NULL)
.这样可以节省存储空间,因此可以节省资金。
来自 technet 的更多优势:
最佳答案
这通常是一个有两个陷阱的好主意:
select distinct col from T
不会使用索引,因为可能会发现空值。使用这个:select distinct col from T where col is not null
. 关于SQL 过滤索引 : should I always put a filter on an index for optional columns?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10548416/
我是一名优秀的程序员,十分优秀!