深入理解Oracle索引(15):日期转换函数的格式参数大小写规则对函数索引的影响...

     规则如下:


                      



     依据这个规则、只有 3 种输出:大写、小写、首字母大写
     
     测试如下:

sys@ORCL> select to_char(sysdate,\'Month\') from dual;

TO_CHAR(SYSDATE,\'MONTH\')
------------------------------------
June

sys@ORCL> select to_char(sysdate,\'MOnth\') from dual;

TO_CHAR(SYSDATE,\'MONTH\')
------------------------------------
JUNE

sys@ORCL> select to_char(sysdate,\'month\') from dual;

TO_CHAR(SYSDATE,\'MONTH\')
------------------------------------
june


     下面做个测试、确认这个规则对函数索引的影响:

sys@ORCL> drop table t purge;

Table dropped.

sys@ORCL> create table t as select object_id,sysdate+rownum as create_date from dba_objects where rownum<=5000;

Table created.

sys@ORCL> analyze table t compute statistics;

Table analyzed.

sys@ORCL> set autot trace exp
sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-dd\')=\'2011-06-02\';

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

--------------------------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    50 |   500 |     5  (20)| 00:00:01 |
|*  1 |  TABLE ACCESS FULL| T    |    50 |   500 |     5  (20)| 00:00:01 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - filter(TO_CHAR(INTERNAL_FUNCTION("CREATE_DATE"),\'yyyy-mm-dd\')=\'20
              11-06-02\')

sys@ORCL> create index idx_t on t (to_char(create_date,\'YYYY-MM-DD\'));

Index created.

sys@ORCL> analyze index idx_t validate structure;

Index analyzed.

sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-dd\')=\'2013-06-02\';

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

--------------------------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    50 |   500 |     5  (20)| 00:00:01 |
|*  1 |  TABLE ACCESS FULL| T    |    50 |   500 |     5  (20)| 00:00:01 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - filter(TO_CHAR(INTERNAL_FUNCTION("CREATE_DATE"),\'yyyy-mm-dd\')=\'20
              13-06-02\')

sys@ORCL> set autot off
sys@ORCL> create index idx_t_001 on t (to_char(create_date,\'yyyy-mm-dd\'));

Index created.

sys@ORCL> analyze index idx_t_001 validate structure;

Index analyzed.

sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-dd\')=\'2013-06-02\';

no rows selected

sys@ORCL> set autot trace exp

第一种情况:小写

sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-dd\')=\'2013-06-02\';

Execution Plan
----------------------------------------------------------
Plan hash value: 512271049

-----------------------------------------------------------------------------------------
| Id  | Operation                   | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
-----------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT            |           |    50 |   500 |     2   (0)| 00:00:01 |
|   1 |  TABLE ACCESS BY INDEX ROWID| T         |    50 |   500 |     2   (0)| 00:00:01 |
|*  2 |   INDEX RANGE SCAN          | IDX_T_001 |    20 |       |     1   (0)| 00:00:01 |
-----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   2 - access(TO_CHAR(INTERNAL_FUNCTION("CREATE_DATE"),\'yyyy-mm-dd\')=\'2013-06-02\'
              )


第二种情况:首字母大写

sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-Dd\')=\'2013-06-02\';

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

--------------------------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    50 |   500 |     5  (20)| 00:00:01 |
|*  1 |  TABLE ACCESS FULL| T    |    50 |   500 |     5  (20)| 00:00:01 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - filter(TO_CHAR(INTERNAL_FUNCTION("CREATE_DATE"),\'yyyy-mm-Dd\')=\'20
              13-06-02\')


第三种情况:大写

sys@ORCL> select * from t where to_char(create_date,\'yyyy-mm-DD\')=\'2013-06-02\';

Execution Plan
----------------------------------------------------------
Plan hash value: 1601196873

--------------------------------------------------------------------------
| Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
--------------------------------------------------------------------------
|   0 | SELECT STATEMENT  |      |    50 |   500 |     5  (20)| 00:00:01 |
|*  1 |  TABLE ACCESS FULL| T    |    50 |   500 |     5  (20)| 00:00:01 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - filter(TO_CHAR(INTERNAL_FUNCTION("CREATE_DATE"),\'yyyy-mm-DD\')=\'20
              13-06-02\')


转载于:http://blog.itpub.net/26515977/viewspace-1208150/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值