一种方法是添加一个虚拟列:
create table demo_products
( id integer not null
, name varchar2(20)
, name_upper generated always as (upper(name)) );
create index demo_prod_upper_name_ix on demo_products(name_upper);
insert all
into demo_products (id, name) values (1, 'Prod A')
into demo_products (id, name) values (2, 'Prod a')
into demo_products (id, name) values (3, 'Prod B')
into demo_products (id, name) values (4, 'Prod b')
into demo_products (id, name) values (5, 'prod A')
into demo_products (id, name) values (6, 'Cheese')
into demo_products (id, name) values (7, 'Bananas')
select * from dual;
commit;
select count(*) from demo_products where name_upper = 'PROD A';
COUNT(*)
----------
3
Plan hash value: 4158816492
---------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 12 | 1 (0)| 00:00:01 |
| 1 | SORT AGGREGATE | | 1 | 12 | | |
|* 2 | INDEX RANGE SCAN| DEMO_PROD_UPPER_NAME_IX | 1 | 12 | 1 (0)| 00:00:01 |
---------------------------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------
2 - access("NAME_UPPER"='PROD A')