Oracle中 instr 函数

前端之家收集整理的这篇文章主要介绍了Oracle中 instr 函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Oracle中 instr 函数

instr(string1,string2[,start_position[,nth_appearence]])

string1:要在此字符串中查找。

string2:要在string1中查找的字符串。

start_position:从string1开始查找的位置。可选,默认为1,正数时,从左到右检索,负数时,从右到左检索。

nth_appearence:查找第几次出现string2。可选,默认为1,不能为负。

注:如果没有查找到,返回0。

例如:

selectinstr('abcd','a') from dual;  --返回1
select select函数可以用于模糊查询以及判断包含关系:

例如:

① select code,name,dept,occupationfrom staffwhereinstr(code,'001') > 0;

  等同于

  select code,occupationfrom staffwhere codelike '%001%' ;

② select ccn,mas_loc from mas_loc whereinstr('FH,FHH,FHM',ccn)>0;

  等同于

  select ccn,mas_loc from mas_loc where ccn in ('FH','FHH','FHM');

原文链接:https://www.f2er.com/oracle/213420.html

猜你在找的Oracle相关文章