SQL 查询字段中JSON 内容中的属性

select * from user_application where JSON_EXTRACT(extra_info,'$.newQuotaState') = 'show'

select * from 表名 where JSON_EXTRACT(  表中字段名 ,'$.json中的字段名') = 'json字段名对应的value'

你可能感兴趣的:(MySQL,MySQL,查询,JSON)