标签: sql postgresql jsonb
我有一个嵌套的json对象。我想使用jsonb_set来更新当前为null的属性的值。我试过跟随。
jsonb_set
UPDATE database1 SET foo = jsonb_set(foo, '{"bar",0}', '"TEST1"', true) WHERE foo #> '{"bar",0}' is null
这不起作用,如果值不为null,则此解决方案有效。