isnull 索引oracle,索引 - null值上的索引测试(1)

已选择12行。

-- 3. 通过谓词id=10,可以使用索引

SQL> explain plan for

2  select id from test_x where id = 10;

已解释。

SQL> select * from table(dbms_xplan.display);

PLAN_TABLE_OUTPUT

--------------------------------------------------------------------------------

Plan hash value: 3259450756

-------------------------------------------------------------------------------

| Id  | Operation        | Name       | Rows  | Bytes | Cost (%CPU)| Time     |

-------------------------------------------------------------------------------

|   0 | SELECT STATEMENT |            |     1 |    13 |     1   (0)| 00:00:01 |

|*  1 |  INDEX RANGE SCAN| IND_TEST_X |     1 |    13 |     1   (0)| 00:00:01 |

-------------------------------------------------------------------------------

Predicate Information (identified by operation id):

---------------------------------------------------

1 - access("ID"=10)

Note

-----

- dynamic sampling used for this statement

已选择17行。

-- 4. 使用谓词 id is

null,不能使用索引,即使我通过hint,仍不能使用索引

SQL> explain plan for

2  select id from test_x where id is null;

已解释。

SQL> select * from table(dbms_xplan.display);

PLAN_TABLE_OUTPUT

--------------------------------------------------------------------------------

Plan hash value: 1044436394

----------------------------------------------------------------------------

| Id  | Operation         | Name   | Rows  | Bytes | Cost (%CPU)| Time     |

----------------------------------------------------------------------------

|   0 | SELECT STATEMENT  |        |     1 |    13 |     3   (0)| 00:00:01 |

|*  1 |  TABLE ACCESS FULL| TEST_X |     1 |    13 |     3   (0)| 00:00:01 |

----------------------------------------------------------------------------

Predicate Information (identified by operation id):

---------------------------------------------------

1 - filter("ID" IS NULL)

Note

-----

- dynamic sampling used for this statement

已选择17行。

SQL> explain plan for

2  select/*+index (test_x ind_test_x)*/ id from test_x where id is null;

已解释。

SQL> select * from table(dbms_xplan.display);

PLAN_TABLE_OUTPUT

--------------------------------------------------------------------------------

Plan hash value: 1044436394

----------------------------------------------------------------------------

| Id  | Operation         | Name   | Rows  | Bytes | Cost (%CPU)| Time     |

----------------------------------------------------------------------------

|   0 | SELECT STATEMENT  |        |     1 |    13 |     3   (0)| 00:00:01 |

|*  1 |  TABLE ACCESS FULL| TEST_X |     1 |    13 |     3   (0)| 00:00:01 |

----------------------------------------------------------------------------

Predicate Information (identified by operation id):

---------------------------------------------------

1 - filter("ID" IS NULL)

Note

-----

- dynamic sampling used for this statement

已选择17行。

对于索引列,一般情况下是不能存储Null值的。这是因为建立索引时需要对列的值进行比较操作,并将值进行排序和存储在树结构中。Null值的特殊性在于它表示缺失或未知的值,与其他具体的值进行比较时会出现问题。因此,索引通常不包含Null值。 然而,需要注意的是,不同的数据库对于Null值的处理方式可能有所不同。例如,SQL Server的索引是包含Null值的,而Oracle索引则不包含Null值。因此,在使用is null条件时,SQL Server的索引仍然可以生效,而Oracle索引则会失效。 对于Oracle数据库,如果需要使用is null条件进行查询并希望索引生效,可以考虑使用复合索引的方式。通过将is null条件所在的列和其他相关列一起建立索引,就可以使得该查询能够使用索引进行优化。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [MySQL索引失效的几种情况汇总](https://download.csdn.net/download/weixin_38659248/13682560)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *2* [SQL SERVER 中is null 和 is not null 将会导致索引失效吗?](https://blog.csdn.net/weixin_33698043/article/details/90652951)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] - *3* [通过复合索引来避免is null使索引失效!](https://blog.csdn.net/zq9017197/article/details/7089332)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 33.333333333333336%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值