gpt4 book ai didi

postgresql - 在 PostgreSQL 中重复更新时插入?

转载 作者:行者123 更新时间:2023-11-29 18:28:07 24 4
gpt4 key购买 nike

几个月前,我从 Stack Overflow 上的一个答案中了解到如何使用以下语法在 MySQL 中一次执行多个更新:

INSERT INTO table (id, field, field2) VALUES (1, A, X), (2, B, Y), (3, C, Z)
ON DUPLICATE KEY UPDATE field=VALUES(Col1), field2=VALUES(Col2);

我现在已经切换到 PostgreSQL,显然这是不正确的。它指的是所有正确的表,因此我认为这是使用不同关键字的问题,但我不确定 PostgreSQL 文档中的何处涵盖了这一点。

为了澄清,我想插入一些内容以及它们是否已经存在以进行更新。

最佳答案

PostgreSQL 从 9.5 版本开始有 UPSERT语法,带有 ON CONFLICT子句。具有以下语法(类似于 MySQL)

INSERT INTO the_table (id, column_1, column_2) 
VALUES (1, 'A', 'X'), (2, 'B', 'Y'), (3, 'C', 'Z')
ON CONFLICT (id) DO UPDATE
SET column_1 = excluded.column_1,
column_2 = excluded.column_2;
<小时/>

在 postgresql 的电子邮件组文件中搜索“upsert”会发现 an example of doing what you possibly want to do, in the manual :

Example 38-2. Exceptions with UPDATE/INSERT

This example uses exception handling to perform either UPDATE or INSERT, as appropriate:

CREATE TABLE db (a INT PRIMARY KEY, b TEXT);

CREATE FUNCTION merge_db(key INT, data TEXT) RETURNS VOID AS
$$
BEGIN
LOOP
-- first try to update the key
-- note that "a" must be unique
UPDATE db SET b = data WHERE a = key;
IF found THEN
RETURN;
END IF;
-- not there, so try to insert the key
-- if someone else inserts the same key concurrently,
-- we could get a unique-key failure
BEGIN
INSERT INTO db(a,b) VALUES (key, data);
RETURN;
EXCEPTION WHEN unique_violation THEN
-- do nothing, and loop to try the UPDATE again
END;
END LOOP;
END;
$$
LANGUAGE plpgsql;

SELECT merge_db(1, 'david');
SELECT merge_db(1, 'dennis');
<小时/>

hackers mailing list 中可能有一个如何使用 9.1 及更高版本中的 CTE 批量执行此操作的示例。 :

WITH foos AS (SELECT (UNNEST(%foo[])).*)
updated as (UPDATE foo SET foo.a = foos.a ... RETURNING foo.id)
INSERT INTO foo SELECT foos.* FROM foos LEFT JOIN updated USING(id)
WHERE updated.id IS NULL;

参见a_horse_with_no_name's answer以获得更清晰的示例。

关于postgresql - 在 PostgreSQL 中重复更新时插入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45980563/

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