oracle字元查詢函式instr()
阿新 • • 發佈:2019-01-27
1、instr()函式的格式 (俗稱:字元查詢函式)
格式一:instr( string1, string2 ) / instr(源字串, 目標字串)
instr(v_zh_claim_stutas_pro,'c')>0
//v_zh_claim_stutas_pro→string1,'c'→string2
格式二:instr( string1, string2 [, start_position [, nth_appearance ] ] ) / instr(源字串, 目標字串, 起始位置, 匹配序號)
解析:string2 的值要在string1中查詢,是從start_position給出的數值(即:位置)開始在string1檢索,檢索第nth_appearance(幾)次出現string2。
select instr('helloworld','l',2,2) from dual; --返回結果:4 也就是說:在"helloworld"的第2(e)號位置開始,查詢第二次出現的“l”的位置
select instr('helloworld','l',3,2) from dual; --返回結果:4 也就是說:在"helloworld"的第3(l)號位置開始,查詢第二次出現的“l”的位置
select instr('helloworld','l',4,2) from dual; --返回結果:9 也就是說:在"helloworld"的第4(l)號位置開始,查詢第二次出現的“l”的位置
select instr('helloworld','l',-1,1) from dual; --返回結果:9 也就是說:在"helloworld"的倒數第1(d)號位置開始,往回查詢第一次出現的“l”的位置
select instr('helloworld','l',-2,2) from dual; --返回結果:4 也就是說:在"helloworld"的倒數第1(d)號位置開始,往回查詢第二次出現的“l”的位置
select instr('helloworld','l',2,3) from dual; --返回結果:9 也就是說:在"helloworld"的第2(e)號位置開始,查詢第三次出現的“l”的位置
select instr('helloworld','l',-2,3) from dual; --返回結果:3 也就是說:在"helloworld"的倒數第2(l)號位置開始,往回查詢第三次出現的“l”的位置