zoukankan      html  css  js  c++  java
  • mysql如何判断一个字符串是否包含另外一个字符串?

    转自:http://blog.csdn.net/hechurui/article/details/49278493

    判断子字符串在父字符串当中的索引:

    SELECT LOCATE("b","abc");

    返回:2

    、、、、、、、、、

    方法一:

    SELECT * FROM users WHERE emails like "%b@email.com%";

    方法二:

    利用mysql 字符串函数 find_in_set();

    SELECT * FROM users WHERE find_in_set('aa@email.com', emails);

    这样是可以的,怎么理解呢?

    mysql有很多字符串函数 find_in_set(str1,str2)函数是返回str2中str1所在的位置索引,str2必须以","分割开。

    注:当str2为NO1:“3,6,13,24,33,36”,NO2:“13,33,36,39”时,判断两个数据中str2字段是否包含‘3’,该函数可完美解决

    mysql > SELECT find_in_set()('3','3,6,13,24,33,36') as test;
    -> 1

    mysql > SELECT find_in_set()('3','13,33,36,39') as test;
    -> 0

    方法三:

    使用locate(substr,str)函数,如果包含,返回>0的数,否则返回0 

    例子:判断site表中的url是否包含'http://'子串,如果不包含则拼接在url字符串开头
    update site set url =concat('http://',url) where locate('http://',url)=0 

    注意mysql中字符串的拼接不能使用加号+,用concat函数

    方法四:

    INSTR(str,substr);

    SELECT
    INSTR('str', 'substr');

    -》0

    SELECT
    INSTR('substr', 'str');

    -》4

  • 相关阅读:
    分层开发的优势
    分层开发的特点
    三层开发遵循的原则
    为什么需要分层
    什么是JNDI
    为什么需要JavaBean
    连接池中的连接对象是由谁创建的呢?
    什么是连接池技术
    为什么使用连接池?(为什么要使用JNDI)
    Servlet加载
  • 原文地址:https://www.cnblogs.com/YuyuanNo1/p/8508712.html
Copyright © 2011-2022 走看看