Mysql JSON 新特性用法
Mysql 5.7 开始支持 JSON,应用场景有 记录数据操作日志, 保留的扩展字段 等等。
- 插入 json 数据
insert into test (json_field) value("{"col": val1, "col2":"val2"...}");
insert into test (json_field) value(json_object(col1,val2, col2, val2)));
- 修改数据
update test set json_field = json_set(json_field, '$.col", val);
- 查询数据
select json_extract(json_field, "$.col") from test;
select JSON_UNQUOTE(json_extract(json_field, "$.col")) from test;
select json_field -> "$.col"from test;
select json_field ->> "$.col" from test;
参照资料
- MySQL 5.7 新增加的 JSON 特性对应的 json 方法
- The JSON Data Type