在mysql 中存了一个json 数组(VARCHAR类型) ,形如:[“2″,”1″,”3″,”4″,”5”]这种形式。本人现在需要匹配查询 数组中包含元素1,2的记录。问一下sql 应该怎么样写?
解决方案
10
//本人只能想到这个 select * from 表 where 字段 like "%1%" and 字段 like "%2%";
30
find_in_set()
10
//本人只能想到这个 select * from 表 where 字段 like "%1%" and 字段 like "%2%";
30