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")
结果:
转载请注明原文地址:https://tech.qufami.com/read-17601.html