mysql, json_extract()函数属于mysql,可以用来查询json中某个字段的值。
基本语法格式是:
JSON_EXTRACT(json_doc,path【,path】 …)
注意:如果数据量很小,而json字符串很大,可以使用这个方法。如果数据量很大,最好不要用。
参考示例:
json_extract()函数的使用,示例代码:
mysqlselectjson_extract({name:Zhaim,tel:13240133388},$.tel);+--------------------------------------------------------------+|json_extract({name:Zhaim,tel:13240133388},$.tel)|+--------------------------------------------------------------+|13240133388|+--------------------------------------------------------------+1rowinset(0.00sec)mysqlselectjson_extract({name:Zhaim,tel:13240133388},$.name);+---------------------------------------------------------------+|json_extract({name:Zhaim,tel:13240133388},$.name)|+---------------------------------------------------------------+|Zhaim|+---------------------------------------------------------------+1rowinset(0.00sec)
mysql,以上就是本文为您收集整理的mysql最新内容,希望能帮到您!更多相关内容欢迎关注。