instr函数的用法
1.定义
instr函数返回要截取的字符串在源字符串中的位置
语法如下:
instr( string1, string2 [, start_position [, nth_appearance ] ] )
参数分析:
string1 源字符串,要在此字符串中查找。
string2 要在string1中查找的字符串.
start_position 代表string1 的哪个位置开始查找。
(此参数可选,如果省略默认为1. 字符串索引从1开始。如果此参数为正,从左到右开始检索,如果此参数为负,从右到左检索,返回要查找的字符串在源字符串中的开始索引)
nth_appearance
(代表要查找第几次出现的string2. 此参数可选,如果省略,默认为 1.如果为负数系统会报错。)
(参考:https://www.jb51.net/article/31715.htm)
2.用法
a.SELECT code , name , dept, occupation FROM staff WHERE instr('A1,A2',code)>0; 返回包含A1 或者A2
b.SELECT code, name, dept, occupation FROM staff WHERE instr(code, '001') > 0; 返回包含001