关于使用upper函数导致检索语句慢的问题
select * from tab where upper(a) like '%%';因为加了upper函数,导致这个检索语句变得非常慢,请问各位大神有没有啥好办法优化,a这个字段我已经加了索引了。
[解决办法]
建个函数索引
[解决办法]
create index idx_a on tab(upper(a));