MySQL 8.0 可以操作 JSON 了
前言:
经过漫长的测试,即将整体迁移至mysql8.0
; mysql8.0
对于json
操作新增/优化了很多相关json
的api操作; 阅读了一下官方文档,虽然绝大多数的json操作都是应用层完成,但是会一些mysql
的json
语法,方便进行debug
;选出基础的, 有价值的部分,供未来参考;
https://dev.mysql.com/doc/ref...
https://dev.mysql.com/doc/ref...
1、简单概述
不允许为null
; json
格式定义与longblob or longtext
类似; 它的最大长度是受到max_allowed_packet
所控制的;
查看json字段所占用空间大小的函数时json_storage_size(xxx)
;
除普通的json
操作,额外支持geojson
(基于几何图形的针对地理空间数据交换格式)一些相关操作;
对json栏位支持索引(结合mysql8.0
新特性,函数index
);
一个可以支持部分的,原地更新json column
的可选优化项加入mysql8.0
; 可以使用的函数有json_set()
, json_replace()
,json_remove()
; 使用时,有一些约束,但是会有更加的性能;
2、json基础工具
//使用json_array方法定义json数组; select json_array(1, "abc", null, true, curtime()) //结果:[1, "abc", null, true, "11:30:24.000000"] //json_object 方法定义json对象 select json_object('id', 87, 'name', 'carrot') //结果{"id": 87, "name": "carrot"} //数组 与 对象嵌套的场景; [99, {"id": "hk500", "cost": 75.99}, ["hot", "cold"]] {"k1": "value", "k2": [10, 20]} //日期/时间类型定义 ["12:18:29.000000", "2015-07-29", "2015-07-29 12:18:29.000000"] //json_quote 将json对象转义成string, 就是将内部的符 号进行转义,并整体包裹上双引号; json_quote(' "null" ') //结果 "\"null\"" //将json内容美化并输出; json_pretty() //可以将json/json内部的元素转化为其他数据类型; //如下将json jdoc 中的id元素,转化为 unsigned int; [https://dev.mysql.com/doc/refman/8.0/en/json.html#json-converting-between-types] (https://dev.mysql.com/doc/refman/8.0/en/json.html#json-converting-between-types) order by cast(json_extract(jdoc, '$.id') as unsigned);
合并json
的操作 json_merge_preserve() and json_merge_patch()
实际业务用的可能性很少;
-> -->操作符,按照key 找值; 区别在于 -->会去除包裹的”以及转义符号; 它的等价的function
形式是json_extract()
// {"mascot": "our mascot is a dolphin named \"sakila\"."} mysql> select col->"$.mascot" from qtest; //结果:| "our mascot is a dolphin named \"sakila\"." | select sentence->>"$.mascot" from facts; // 结果: | our mascot is a dolphin named "sakila". |
3、json path expression
上面 --> 后双引号中的内容就是所谓的json path expression
;
该语法是ecmascript
规范的一部分,所以前端程序员应该特别熟悉;
以下面这段json为例:
[3, {"a": [5, 6], "b": 10}, [99, 100]] $[0] = 3 ; $[1] = {"a": [5, 6], "b": 10}; $[2] = [99, 100];
与此同时,$[1], $[2] 并非标量, 进一步
$[1].a = [5,6] $[1].a[1] = 6 $[1].b = 10; $[2][0] = 99;
更进一步支持的语法特性$[n to m]
$[ 1 to 2] = [{"a": [5, 6], "b": 10}, [99, 100]] $[last-2 to last-1] = [3, {"a": [5, 6], "b": 10}]
总结一下;
- a .*是代表所有的
members in object
; - b [*]是代表所有的
cells in array
; - c [prefix] ** suffix 是代表以prefix开始,以suffix为结束的所有路径;
4、查找并修改json
//如上, 应该可以用-->语法取代; mysql> select json_extract('{"a": 1, "b": 2, "c": [3, 4, 5]}', '$.*'); //[1, 2, [3, 4, 5]] select json_extract('{"a": 1, "b": 2, "c": [3, 4, 5]}', '$.c[*]') //[3, 4, 5] select json_extract('{"a": {"b": 1}, "c": {"b": 2}}', '$**.b'); //[1, 2] select json_extract('[1, 2, 3, 4, 5]', '$[1 to 3]'); //[2, 3, 4] //json_set json_insert json_replace json_remove set @j = '["a", {"b": [true, false]}, [10, 20]]'; select json_set(@j, '$[1].b[0]', 1, '$[2][2]', 2); //| ["a", {"b": [1, false]}, [10, 20, 2]] select json_insert(@j, '$[1].b[0]', 1, '$[2][2]', 2); //["a", {"b": [true, false]}, [10, 20, 2]] json_replace(@j, '$[1].b[0]', 1, '$[2][2]', 2) //["a", {"b": [1, false]}, [10, 20]] select json_remove(@j, '$[2]', '$[1].b[1]', '$[1].b[1]'); //["a", {"b": [true]}]
json table functions
一个比较常见的场景是json
数据本身是一个表的结构;
json_table(*expr*, *path* columns (*column_list*) [as\] *alias*)
select * from json_table( '[{"a":"3"},{"a":2},{"b":1},{"a":0},{"a":[1,2]}]', -> "$[*]" -> columns( -> rowid for ordinality, -> ac varchar(100) path "$.a" default '111' on empty default '999' on error, -> aj json path "$.a" default '{"x": 333}' on empty, -> bx int exists path "$.b" -> ) -> ) as tt;
comparison and ordering of json values
目前没感觉倒价值;
aggregation of json values
目前没感觉倒价值; 将返回值转成其他类型就可以使用聚合函数;
到此这篇关于mysql 8.0 可以操作 json 了的文章就介绍到这了,更多相关mysql 8.0 操作 json内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 工业互联网加速发展背后的三大管理变革
下一篇: 互联网下半场:产业互联网创业的3种境界