NULL values in indexes are considered to be distinct except when all the non-NULL
values in two or more rows of an index are identical, in which case the rows are
considered to be identical. Therefore, UNIQUE indexes prevent rows containing NULL
values from being treated as identical. This does not apply if there are no non-NULL
values—in other words, if the rows are entirely NULL.
Oracle does not index table rows in which all key columns are NULL, except in the case
of bitmap indexes or when the cluster key column value is NULL.
索引与空值
1. 前面这段每看懂 , 哪位大哥看到了 , 明白的话赐教一下.
2. Oracle 不会将索引列全部为 NULL 的数据行加入到索引中.不过位图索引是个例外,簇键的列值为 NULL 时也是例外
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/10599713/viewspace-982360/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/10599713/viewspace-982360/
本文探讨了Oracle数据库中索引处理NULL值的方式。当所有非NULL值相同时,即使包含NULL值,行也被视为相同;唯一索引阻止将含有NULL值的行视为相同。此外,Oracle通常不会将所有键列为NULL的行加入索引,但位图索引和簇键列值为NULL的情况除外。
1693

被折叠的 条评论
为什么被折叠?



