pgsql 查询及更新json字段的某个属性

pgsql 查询及更新json字段的某个属性

一、查询json字段中的某个属性

  查询 t_user 表中json 字段 info 中的 name 属性

select info ->> 'name' from t_user;

二、更新json字段中的某个属性

   更新 info 的name属性为张三

update t_user set info = (info::jsonb || '{"name": "张三"}') where id = 1;

 

  以上就ok 了!

 

posted @ 2024-08-01 17:27  BillyYang  阅读(391)  评论(0编辑  收藏  举报