mysql存储json

Posted gongzhuiau

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql存储json相关的知识,希望对你有一定的参考价值。

 

 

1. json_merge 合并Json并返回

 

update `user` set inviteeMap = json_merge(inviteeMap, ‘{"xx1":100}‘)	 where `account` = ‘100089‘;

  

2.插入json

update `user` set inviteeMap = json_insert(inviteeMap, ‘$.a1‘, "111")	 where `account` = ‘100089‘;

  

3.插入或者更新json字段。

update `user` set inviteeMap = json_set(inviteeMap, ‘$.a‘, "111")	 where `account` = ‘100089‘;

  

4.更新json字段。

update `user` set inviteeMap = json_replace(inviteeMap, ‘$.a1‘, "updatejson") where `account` = ‘100089‘;

  

5. 抽取json字段的值。

update `user` set inviteeMap = json_extract(inviteeMap, ‘$.a‘)	 where `account` = ‘100089‘;

  

6.将对象转化为json。

update `user` set inviteeMap = json_object(‘a‘, 1, ‘b‘,2)	 where `account` = ‘100089‘;

 

7,移除json的某个属性

update `user` set inviteeMap = json_remove(inviteeMap,‘$.b‘)	 where `account` = ‘100089‘;

 对于玩家的多个标志,可以用json来存储和局部更新,会更方便。

以上是关于mysql存储json的主要内容,如果未能解决你的问题,请参考以下文章

从 google-site 上的嵌入式(iframe)片段,引用存储在 google 驱动器上的 json 文件

如何在 MySQL 数据库中存储 JSON 字符串

json 个人的vscode的代码片段

在mysql存储过程中使用concat创建json

实用代码片段将json数据绑定到html元素 (转)

json 可视代码工作室Angular with Firebase片段