gpt4 book ai didi

SQL插入和更新

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

在 PostgreSQL 中是否可以同时更新一个表并向另一个表插入数据。

喜欢

UPDATE table1
SET column4=true
AND INSERT into table2
SELECT column1, column2, column3
FROM table 1
WHERE column1="peter"
;

最佳答案

在 Postgres 9.1 或更高版本上,您可以使用类似的东西:

WITH source AS (UPDATE table1
SET column4=true
WHERE column1='peter'
RETURNING column1, column2, column3)
INSERT INTO table2
SELECT column1, column2, column3
FROM source;

关于SQL插入和更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18129462/

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