instr()字符查找函数的使用

Posted 苦瓜蘸芥末

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了instr()字符查找函数的使用相关的知识,希望对你有一定的参考价值。

mysql的sql语句学习之instr()字符查找函数的使用:

    INSTR(str,substr)

    str:从哪个字符串中搜索

    substr:要搜索的子字符串

    instr()函数不区分大小写
  1. instr(colName,string1)查询列名包含字符串1的结果,e.g,
    select userName from t_user_info where userName like concat("%",\'江苏\',"%");

    select userName from t_user_info where instr(userName,\'江苏\');
    select userName from t_user_info where instr(userName,\'江苏\')>0;
    查询结果相同
  2. SELECT INSTR(string1,string2)在string1中查找string2字符串并输出下标,e.g,

https://www.cnblogs.com/mr-wuxiansheng/p/6531221.html

以上是关于instr()字符查找函数的使用的主要内容,如果未能解决你的问题,请参考以下文章

oracle的常用函数 instr() 和substr()函数

oracle 数据库存 查找字符串函数 like instr

oracle的常用函数 instr() 和substr()函数

hive之instr()函数

Oracle中的instr()函数

hive之instr()函数