我正在尝试将密钥附加到postgres中的嵌套jsonb中,但是出现错误。本质上,我从json开始:
{"tel": "123", "name": "foo", "new_info": {"a": "bar"}}
并且我想将{"b", "baz"}
附加到“ new_info”中,以便得到的jsonb为:
{"tel": "123", "name": "foo", "new_info": {"a": "bar", "b":"baz"}}
我正在使用以下命令来获取原始的jsonb:
CREATE TABLE mytable (
ID serial NOT NULL PRIMARY KEY,
data jsonb NOT NULL
);
INSERT INTO mytable (data)
VALUES
(
'{ "name": "foo", "tel": "123"}'
);
UPDATE mytable SET data = jsonb_set(data, '{new_info}', '{"a":"bar"}', TRUE) WHERE data @> '{"name": "foo"}' ;
,并尝试使用以下内容更新无效的“ new_info”:
WITH orig_new_info AS (SELECT data#>'{new_info}' FROM mytable WHERE data @> '{"name": "foo"}')
WITH updated_new_info AS (jsonb_set(orig_new_info, '{"b":"baz"}',TRUE ))
UPDATE mytable SET data = jsonb_set(data, '{new_info}', updated_new_info, TRUE) WHERE data @> '{"name": "foo"}';
任何指针都非常感谢!
更新#1:
每个克林族人回答以下问题:
update mytable
set data = jsonb_insert(data, '{new_info}', data->'new_info' || '{"b":"baz"}', TRUE)
where data @> '{"name": "foo"}'
returning *;
但是,如何避免使用jsonb_insert之类的内容覆盖现有密钥。换句话说,以下示例为何不起作用?
#ex 1
update mytable
set data = jsonb_insert(data, '{new_info}', jsonb_insert(SELECT data->'new_info' FROM mytable WHERE data @> '{"name": "foo"}'), '{"b":"baz"}'),true)
where data @> '{"name": "foo"}'
returning *;
#ex2
WITH orig_new_info AS (SELECT data#>'{new_info}' FROM mytable WHERE data @> '{"name": "foo"}')
WITH updated_new_info AS(SELECT jsonb_insert(orig_new_info, orig_new_info ||'{"b":"bazer"}'))
update mytable
set data = jsonb_set(data, '{new_info}', updated_new_info, TRUE)
where data @> '{"name": "foo"}'
returning *;
换句话说,klin的答案只考虑了data
jsonb顶层的密钥,而不是"new_info"
内的嵌套data
json的密钥。
更新#2:
每个克林斯人更新后都会回答以下问题:
update mytable
set data = jsonb_insert(data, '{new_info, b}', '"baz"')
where data @> '{"name": "foo"}'
但是如果"new_info"
中不存在data
,则更新将成功完成而不保存。因此,以下命令可以成功完成,但不会保存数据:
DROP TABLE mytable;
CREATE TABLE mytable (
ID serial NOT NULL PRIMARY KEY,
data jsonb NOT NULL
);
INSERT INTO mytable (data)
VALUES
(
'{ "name": "foo", "tel": "123"}'
);
update mytable
set data = jsonb_insert(data, '{new_info, b}', '"baz"')
where data @> '{"name": "foo"}'
returning *;
所以这对我来说有点令人惊讶,因为它给人的印象是它保存了,尽管没有保存。我想避免使用case语句,因为在大多数情况下,这将是不必要的检查,并且宁愿在“ new_info”不存在的情况下失败(或者如果它不增加“ new_info”已经存在的情况的开销,则创建它)存在)。即我想避免这些答案的作用:
Check if key exists in a JSON with PL/pgSQL?
Update or create nested jsonb value using single update command
答案 0 :(得分:2)
使用||
(串联运算符):
update mytable
set data = jsonb_set(data, '{new_info}', data->'new_info' || '{"b":"baz"}')
where data @> '{"name": "foo"}'
returning *
id | data
----+---------------------------------------------------------------------
1 | {"tel": "123", "name": "foo", "new_info": {"a": "bar", "b": "baz"}}
(1 row)
UPDATE 1
函数jsonb_set()
是在Postgres 9.5中引入的。在Postgres 9.6+中,您还可以使用jsonb_insert(),
,它可能更直接:
update mytable
set data = jsonb_insert(data, '{new_info, b}', '"baz"')
where data @> '{"name": "foo"}'
jsonb_insert(目标jsonb,路径文本[],new_value jsonb,[在布尔值后插入])
(...)如果 path 指定的 target 部分位于JSONB对象中,则仅在 target时插入 new_value 不存在。
因此,路径必须指向不存在的密钥(要插入的密钥)。