Mysql里查询字段为Json格式的数据模糊查询方法

时间:2022-08-15 16:04:08
json表里面有个content字段数据如下面的Json格式

{"eq":{"f_1360040399":"admin","f_3038116851":"20","f_318208994":"admin@localhost.com"}}

需要对其中的f开头的Json key值所对的value进行模糊查询,方法如下:

select * from table where content->'$.eq.f_1360040399' like '%min%'


也可以用如下的方法,不过推荐使用上面的方法:

select content, left(substring(content, locate('"f_1360040399":"', content)), locate(',', substring(content, locate('"f_1360040399":"', content)))) as a from table where a like '%mi%'

其它情况可以参考:http://www.cnblogs.com/waterystone/p/5626098.html