Oracle PL/SQL之函数索引(Function-based indexes)使用示例
函数索引(Function-based indexes)只有在where条件使用了与索引中相同的基于相同列的函数时才起作用。 duzz$scott@orcl>setautotraceonduzz$scott@orcl>createtablet1asselect*fromdept;Tablecreated.Elapsed:00:00:00.01duzz$scott@orcl>createindexloc_idxont1(upper(loc)...