sql语句交集情况的查询技巧
开发过程中涉及到了查询字符串交集的情况,不会写这样的sql,上网一搜,还真有例子。现在分享给大家。 也许某一天你就会用到,你懂的。 交集 表的字段就是 name no a 2,9 b 8,10 字符串是str="0,1,2,3,4" 接下来就是查 no字段里跟str里有交集的记录 查询的结果就是name=a的,no=2,9的 select * from table1 where concat(',',no,',') regexp concat(',0,|,1,|,2,|,3,|,4,'); 某字段中搜索 可以使用FIND_IN_SET name no a 2,9 b 8,10 想查出no中包含2的记录 select * from table1 where FIND_IN_SET('2', no) 替换某字段中的内容 UPDATE `blog_iplimit` SET `ip` = REPLACE(`ip`, ',', '') |