gpt4 book ai didi

json - 如何使用 json 插入到非空列的表中?

转载 作者:行者123 更新时间:2023-11-29 13:17:54 27 4
gpt4 key购买 nike

我正在尝试将多个非空默认列插入到表 food 中,命令如下:

  • food_insertone('{"id": 1, "taste": "sweet"}'::JSON)
  • food_insertone('{"id": 2}'::JSON)
  • food_insertone('{"id": 3, "taste": null}'::JSON)

结果应该是这样的:

INSERTED 1, 'sweet'
INSERTED 2, ''
ERROR (null not allowed in taste)

food 表定义为:

CREATE TABLE "food" (
"id" INT,
"taste" TEXT NOT NULL DEFAULT '',
...
);

CREATE OR REPLACE FUNCTION "food_insertone" (JSON)
RETURNS VOID AS $$
INSERT INTO "food" SELECT * FROM json_populate_record(NULL::"food", $1);
$$ LANGUAGE SQL;

我正在尝试插入为:

SELECT food_insertone('{"id": 1}'::JSON);

但这不起作用并给我一个错误:

null value in column "taste" violates not-null constraint

我知道 json_populate_record() 为 JSON 中未提及的列创建 NULL 值,这会导致插入 NULL,从而导致此错误。普通插入也可以,但这是一个动态表。

最佳答案

使用默认值的简单情况:

t=# create table food(id int, t text not null default 'some');
CREATE TABLE
t=# insert into food(id) SELECT id FROM json_populate_record(NULL::"food", '{"id":0}');
INSERT 0 1
t=# select * from food ;
id | t
----+------
0 | some
(1 row)

使用合并和另一个值:

t=# insert into food(id,t) 
SELECT id,coalesce(t,'some simple other value')
FROM json_populate_record(NULL::"food", '{"id":0}');

当然你可以使用一些可怕的方法来获取实际的默认值:

t=# insert into food(id,t) SELECT id,coalesce(t,rtrim) FROM json_populate_record(NULL::"food", '{"id":0}') join (select rtrim(ltrim(split_part(column_default,'::',1),$$'$$),$$'$$) from information_schema.columns where table_name = 'food' and column_name = 't') dflt on true;
INSERT 0 1
t=# select * from food ;
id | t
----+-------------------------
0 | some simple other value
0 | some
(2 rows)

关于json - 如何使用 json 插入到非空列的表中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46405417/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com