标签: mysql json regex
在mysql中我有这个表:
id types_id 1 ["1","2"] 2 ["1","2","3"] 3 ["2","3"] ...
我想使用REGEXP在"3" json
REGEXP
"3"
types_id
答案 0 :(得分:1)
您不需要regexp,只需使用like。
regexp
like
where types_id like '%"3"%'