ORACLE,mysql中替换like的函数
阅读原文时间:2023年07月08日阅读:2

数据库中存储了海量的数据,当查询时使用like,速度明显变慢。我在做项目时,发现使用内部函数INSTR,代替传统的LIKE方式查询,并且速度更快。

INSTR()函数返回字符串中子字符串第一次出现的位置。如果在str中找不到子字符串,则INSTR()函数返回零(0)。
下面说明了INSTR函数的语法。

INSTR(str,substr);

    1

INSTR函数接受两个参数:

    str 是要搜索的字符串。
    substr 是要搜索的子字符串。

查找用户名称name中包含a的用户,作用类似于LIKE ‘%a%’

select * from pub_yh_bm t
where instr(t.chr_bmdm,'2')>0

等份于:

select * from pub_yh_bm t
where t.chr_bmdm like '%2%'

2.%a方式:

select * from pub_yh_bm t
where instr(t.chr_bmdm,'110101')=length(t.chr_bmdm)-length('110101')+1

等份于:

select * from pub_yh_bm t
where t.chr_bmdm like '%110101'

3.a%方式:

select * from pub_yh_bm t
where instr(t.chr_bmdm,'11010101')=1

等份于:

select * from pub_yh_bm t
where t.chr_bmdm like '11010101%'