INSTR(STR,SUBSTR)
在STR中查SUBSTR是否存在,不存在返回0;存在则返回位置,位置从1开始;
如果STR为null,返回null;
1. 不存在返回0
select INSTR ("abcde","bc")
结果:
2. 存在则返回位置
select INSTR ("abcde","f")
结果:
3. 如果STR为null,返回null
select INSTR (null,"f")
结果:
在STR中查SUBSTR是否存在,不存在返回0;存在则返回位置,位置从1开始;
如果STR为null,返回null;
select INSTR ("abcde","bc")
结果:
select INSTR ("abcde","f")
结果:
select INSTR (null,"f")
结果: