MySQL中查询json格式的字段实例详解
程序员文章站
2022-04-03 09:58:01
工作开发过程遇到一个需求:需要动态存储客户的姓名、手机号码、身份证、证件类型,意思是可能前端会传一个人或二个人或者三个人的信息是动态的不固定人数的四个字段(姓名、手机号码、身份证、证件类型)。前端页面...
工作开发过程遇到一个需求:需要动态存储客户的姓名、手机号码、身份证、证件类型,意思是可能前端会传一个人或二个人或者三个人的信息是动态的不固定人数的四个字段(姓名、手机号码、身份证、证件类型)。
前端页面如下:
我是使用list
[{ "cardid": "110101199003072316", "cstname": "张双儿1", "cstmobile": "13263654144", "idcardtype": "1" }, { "cardid": "11010119900307571x", "cstname": "张双儿2", "cstmobile": "13263654144", "idcardtype": "1" }]
产品提出来的需求是要模糊查询这些联名客户信息,一开始我错误的写法:
select * from signcustomergroup like ‘%儿%'
但是后来发现有问题,比如 模糊输入一个字母 c ,就会把左边‘cardid' 的英文字段名称匹配上。
后来我了解到 mysql 5.7 以后版本加入了 json 类型,可以使用json类型的一些函数直接查询json格式的某个字段。
正确语法如下:
表字段:
id | sign_customer_info_ext |
---|---|
1 | [{“cstname”:“hhjk”,“cstmobile”:“14258669888”,“idcardtype”:“1”,“cardid”:“460101199601012516”}] |
2 | [{“cstname”:“ghhj中文1355”,“cstmobile”:“18253558608”,“idcardtype”:“1”,“cardid”:“460101199601012815”},{“cstname”:“fhjj重要133366”,“cstmobile”:“15555555555”,“idcardtype”:“1”,“cardid”:“460101199601012313”}] |
主要使用的 sql 函数是 json_extract() ,它的作用是:从json格式查找所有指定数据
1. json 数组查询
模糊查询 json 数组格式的字段中某个字段: 使用方式: select * from 表名 where json_extract(字段名,"$[*].json中key") like '%需要搜索的值%'; 实例: select * from table where json_extract(sign_customer_info_ext,"$[*].cstname") like '%h%';
精准查询(注意:精准查询必须写明所查询字段所属数组那个下标,比如查排在一个就是 [0],第二个就是 [1]) select id,sign_customer_info_ext from table where json_extract(sign_customer_info_ext,"$[0].cstname") = 'ghhj中文1355';
2.单个 json 查询
前端和mysql数据库中 单个 json 参数:
{ "cstname": "马云", "cstmobile": "17879767646", "idcardtype": "1", "cardid": "e4813980" }
模糊查询单个 json 查询: 使用方式: select id,sign_customer_info_ext from 表名 where json_extract(字段名,"$.json中key") like '%马云%'; 实例: select id,sign_customer_info_ext from table where json_extract(sign_customer_info_ext,"$.cstname") like '%马云%';
总结
到此这篇关于mysql中查询json格式的文章就介绍到这了,更多相关mysql查询json格式字段内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读