表名: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)
表名:test
id | type |
---|---|
1 | 1,3,5,7,9 |
2 | 2,3,4 |
3 | 1,5 |
SELECT
id,type
FROM
test
WHERE
FIND_IN_SET('1', type)
本文标题:mysql中find_in_set的使用
本文链接:https://www.haomeiwen.com/subject/psskfqtx.html
网友评论