zoukankan      html  css  js  c++  java
  • Mysql判断是否某个字符串在某字符串字段的4种方法

    方法一:like

    SELECT * FROM 表名 WHERE 字段名 like "%字符%";

    方法二:find_in_set()

    利用mysql 字符串函数 find_in_set();如果包含,返回>0的数,否则返回0 。

    SELECT * FROM users WHERE find_in_set('字符', 字段名);

    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(字符,字段名)

    使用locate(字符,字段名)函数,如果包含,返回>0的数,否则返回0 ,

    它的别名是 position in

    select * from 表名 where locate(字符,字段)>0
    select * from 表名 where position(字符 in 字段)>0;

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

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

    方法四:INSTR(字段,字符)

    select * from 表名 where INSTR(字段,字符)

     

    总结:当数据量比较大的时候,locate使用效率比较快。



  • 相关阅读:
    php CI笔记
    Apache 2.4权限设置( you don't have permission to access / on this server Apache2.4)
    关闭浏览器时退出登录
    onunload 和 onbeforeunload都不执行
    apache ab压力测试工具需要用户登录才能测得时候怎么办?
    《国富论》读书笔记
    数据库设计技巧
    溜到不行。。
    Session和Cookie
    c#缓存
  • 原文地址:https://www.cnblogs.com/wqbin/p/11838919.html
Copyright © 2011-2022 走看看