mysql存储json
1. json_merge 合并Json并返回
1 | update ` user ` set inviteeMap = json_merge(inviteeMap, '{"xx1":100}' ) where `account` = '100089' ; |
2.插入json
1 | update ` user ` set inviteeMap = json_insert(inviteeMap, '$.a1' , "111" ) where `account` = '100089' ; |
3.插入或者更新json字段。
1 | update ` user ` set inviteeMap = json_set(inviteeMap, '$.a' , "111" ) where `account` = '100089' ; |
4.更新json字段。
1 | update ` user ` set inviteeMap = json_replace(inviteeMap, '$.a1' , "updatejson" ) where `account` = '100089' ; |
5. 抽取json字段的值。
1 | update ` user ` set inviteeMap = json_extract(inviteeMap, '$.a' ) where `account` = '100089' ; |
6.将对象转化为json。
1 | update ` user ` set inviteeMap = json_object( 'a' , 1, 'b' ,2) where `account` = '100089' ; |
7,移除json的某个属性
1 | update ` user ` set inviteeMap = json_remove(inviteeMap, '$.b' ) where `account` = '100089' ; |
对于玩家的多个标志,可以用json来存储和局部更新,会更方便。
posted on 2019-12-13 20:15 gongzhuiau 阅读(1298) 评论(0) 编辑 收藏 举报
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步