当前位置:
代码迷
>>
Oracle管理
>> 关于使用upper函数导致检索语句慢的有关问题
详细解决方案
关于使用upper函数导致检索语句慢的有关问题
热度:
97
发布时间:
2016-04-24 04:29:00.0
关于使用upper函数导致检索语句慢的问题
select * from tab where upper(a) like '%%';因为加了upper函数,导致这个检索语句变得非常慢,请问各位大神有没有啥好办法优化,a这个字段我已经加了索引了。
分享到:
更多
------解决方案--------------------
建个函数索引
------解决方案--------------------
create index idx_a on tab(upper(a));
查看全文
相关解决方案
修改字符串的大小写title(),upper(),lower()
MySQL -> DQL:字符函数:upper,lower,concat,substr,instr,length,trim,replace,lpad,rpad
字符串的大写方法(upper)
35.Python中join、length、lower、upper、random、safe、slice、truncatechars、truncatechars_html过滤器