1.帶兩個引數的
--模糊查詢,comp表的mobel和show_name欄位中含有'張'
instr(comp.mobile || comp.show_name, '
張') >02
.帶三個引數的
select instr("oracle","o",1) from
dual;
結果:
1第三個引數:從字串"oracle"的第幾個字元開始到最後
3.帶四個引數的
select instr("oracle o2o","o",1,2) from
dual;
結果:
8第三個引數:從字串"oracle"的第幾個字元開始到最後
第四個引數:從第乙個字串中找到了對應的多個,取第幾個呢?
||', '|| 用於oracle中字串的連線
暫時只測了這一些,後續用到了在更新
參考
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 的第乙個位置開始,向後查詢第乙個出現子串 ...
instr 函式的格式
格式一 instr string1,string2 instr 源字串,目標字串 注 在oracle plsql中,instr函式返回要擷取的字串在源字串中的位置。只檢索一次,也就是說從字元的開始到字元的結尾就結束。格式一1 select instr helloworld l from dual 返...