gpt4 book ai didi

postgresql - 带有 PERFORM 数据修改 CTE 查询的 Postgres plpgsql

转载 作者:行者123 更新时间:2023-11-29 12:03:06 24 4
gpt4 key购买 nike

我试图在下面的代码示例中模拟我的问题。在下面的代码中,我正在一个过程中执行 delete from test2 操作。这很好用:

但是,在我的例子中,这个 delete 是一个相当复杂的 CTE 的一部分,有几个更新和插入(没有选择,所以我添加了一个虚拟的 select 1 作为主查询)。让我们模拟一下:

with my_cte as(delete from test2) select 1

现在,正如我们所知,我们必须使用 perform 关键字来执行:

perform (with my_cte as(delete from test2) select 1);

我收到以下错误:

ERROR: WITH clause containing a data-modifying statement must be at the top level

这是plpgsql的限制吗?

(请注意,这只是解释我的问题的示例。我知道这些查询没有任何意义。)

create table test
(
key int primary key
);

create table test2
(
key int primary key
);

create function test() returns trigger as
$$
begin
raise notice 'hello there';
-- this does work
delete from test2;
-- this doesn't work
perform (with my_cte as(delete from test2) select 1);
return new;
end;
$$
language plpgsql;

create trigger test after insert on test for each row execute procedure test();

insert into test(key) select 1;

最佳答案

您可以使用 CTE 组合多个 DELETE、INSERT、UPDATE 返回查询。而且你不需要为此执行,例如:

t=# begin; do $$ begin with d as (delete from s133 returning *) insert into s133 select * from d; raise info '%',(select count(1) from s133);
end; $$; commit;
BEGIN
Time: 0.135 ms
INFO: 4
DO
Time: 0.469 ms
COMMIT
Time: 0.887 ms
t=# select count(1) from s133;
count
-------
4
(1 row)

这里我删除了四行并在 CTE 中将它们插入回去

关于postgresql - 带有 PERFORM 数据修改 CTE 查询的 Postgres plpgsql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44908442/

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