注:在oracle/plsql中,instr函式返回要擷取的字串在源字串中的位置。只檢索一次,也就是說從字元的開始到字元的結尾就結束。
1 select instr('helloworld','l') from dual; --返回結果:3 預設第一次出現「l」的位置
2 select instr('helloworld','lo') from dual; --返回結果:4 即「lo」同時(連續)出現,「l」的位置
3 select instr('helloworld','wo') from dual; --返回結果:6 即「w」開始出現的位置
注:mysql中的模糊查詢 like 和 oracle中的 instr() 函式有同樣的查詢效果; 如下所示:
mysql select * from t_xt_gnzy where gn_mc like '%業務%';
oracle select * from t_xt_gnzy where instr(gn_mc,'業務')>0; --這兩條語句的效果是一樣的
// instr(源字串, 目標字串, 起始位置, 匹配序號)
1 select instr('helloworld','l',2,2) from dual; --返回結果:4 也就是說:在"helloworld"的第2(e)號位置開始,查詢第二次出現的「l」的位置
2 select instr('helloworld','l',3,2) from dual; --返回結果:4 也就是說:在"helloworld"的第3(l)號位置開始,查詢第二次出現的「l」的位置
3 select instr('helloworld','l',4,2) from dual; --返回結果:9 也就是說:在"helloworld"的第4(l)號位置開始,查詢第二次出現的「l」的位置
4 select instr('helloworld','l',-1,1) from dual; --返回結果:9 也就是說:在"helloworld"的倒數第1(d)號位置開始,往回查詢第一次出現的「l」的位置
5 select instr('helloworld','l',-2,2) from dual; --返回結果:4 也就是說:在"helloworld"的倒數第2(l)號位置開始,往回查詢第二次出現的「l」的位置
6 select instr('helloworld','l',2,3) from dual; --返回結果:9 也就是說:在"helloworld"的第2(e)號位置開始,查詢第三次出現的「l」的位置
7 select instr('helloworld','l',-2,3) from dual; --返回結果:3 也就是說:在"helloworld"的倒數第2(l)號位置開始,往回查詢第三次出現的「l」的位置
instr 函式的格式
格式一 instr string1,string2 instr 源字串,目標字串 注 在oracle plsql中,instr函式返回要擷取的字串在源字串中的位置。只檢索一次,也就是說從字元的開始到字元的結尾就結束。格式一1 select instr helloworld l from dual 返...
instr 函式的用法
最簡單例子 在abcd中查詢a的位置,從第乙個字母開始查,查詢第一次出現時的位置 select instr abcd a 1,1 from dual 1 select instr abcd c 1,1 from dual 3 select instr abcd e 1,1 from dual 0 應...
instr函式的使用
對於instr函式,我們經常這樣使用 從乙個字串中查詢指定子串的位置。例如 sql select instr yuechaotianyuechao ao position from dual position 6從字串 yuechaotianyuechao 的第乙個位置開始,向後查詢第乙個出現子串 ...