0
在MySQL我有這個表:MySQL的正則表達式搜索JSON
id types_id
1 ["1","2"]
2 ["1","2","3"]
3 ["2","3"]
...
我想用REGEXP
獲得包含"3"
在types_id
JSON
在MySQL我有這個表:MySQL的正則表達式搜索JSON
id types_id
1 ["1","2"]
2 ["1","2","3"]
3 ["2","3"]
...
我想用REGEXP
獲得包含"3"
在types_id
JSON
所有行你不需要爲這個regexp
,只是使用like
。
where types_id like '%"3"%'
@ chris85謝謝。有用。 – phper