美文网首页
mysql中find_in_set的使用

mysql中find_in_set的使用

作者: _灯火阑珊处 | 来源:发表于2018-11-13 10:22 被阅读0次

    表名:test

    id type
    1 1,3,5,7,9
    2 2,3,4
    3 1,5
    想要查询出type中包含1的数据:
    SELECT
        id,type
    FROM
        test
    WHERE
        FIND_IN_SET('1', type)
    

    type字段保存的数据,必须是逗号(,)分割,不然查询不到!

    相关文章

      网友评论

          本文标题:mysql中find_in_set的使用

          本文链接:https://www.haomeiwen.com/subject/psskfqtx.html