当前位置: 代码迷 >> 综合 >> ORACLE instr
  详细解决方案

ORACLE instr

热度:62   发布时间:2024-02-12 19:26:18.0
        INSTR(源字符串, 要查找的字符串, 从第几个字符开始, 要找到第几个匹配的序号)select instr('hello','l') from dual --返回'l'在hello中第一次出现的位置 结果为3select instr('hello','l',1,2) from dual -- 结果为4select instr('hello','l',-3,1) from dual--按照从右向左的方向开始
  相关解决方案