gpt4 book ai didi

postgresql - 如何嵌套 `insert ... returning`?

转载 作者:行者123 更新时间:2023-11-29 11:56:09 26 4
gpt4 key购买 nike

Postgresql 可以通过 returning 返回自动递增的值:

insert into table1 (id) values (null) returning id;

我尝试将返回值插入到另一个表中:

insert into table2 (id) values ((insert into table1 (id) values (null) returning id)) returning id;

但这会在嵌套 insert 中的 into 之前引发语法错误。

如何使用内部insert的返回值作为外部insert的值?

最佳答案

您可以链接data modifying CTEs :

with new_t1 as (
insert into table1 (id) values (default)
returning id
)
insert into table2 (id)
select id
from new_t1;

请注意,插入 table1 (id) 值 (null) 返回 id 将返回 null,因为您明确要求将 NULL 插入其中柱子。

为了确保生成值,您需要告诉 Postgres 使用该列的默认值,而不是 NULL 值。

关于postgresql - 如何嵌套 `insert ... returning`?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53121880/

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