美文网首页
MySQL查询字段类型为json的数据

MySQL查询字段类型为json的数据

作者: 垃圾桶边的狗 | 来源:发表于2021-05-13 16:54 被阅读0次
    """select * from table where json_contains(param-> '$[*]','{}'.format(id))
    """
    
    
    select json_extract(param,'$.name'), count(json_extract(param,'$.name')) from table
    where json_extract(param,'$.name') is not null 
    group by json_extract(param,'$.name')
    

    eg1
    eg2
    eg3
    eg4

    相关文章

      网友评论

          本文标题:MySQL查询字段类型为json的数据

          本文链接:https://www.haomeiwen.com/subject/kvrxjltx.html