SQL> create index b on table_1(trim(bm));
SQL> set autot traceonly;
SQL> select * from table_1 where trim(bm) = '11';
Execution Plan
----------------------------------------------------------
   0      SELECT STATEMENT Optimizer=FIRST_ROWS (Cost=1 Card=2 Bytes=3
          4)   1    0   TABLE ACCESS (FULL) OF 'table_1' (Cost=1 Card=2 Bytes=34)
以上的查询为何未使用到基于函数的索引?