postgresql:是否可以运行返回行而不创建函数的操作?

时间:2019-04-29 16:14:33

标签: sql postgresql plpgsql

我有一些SQL结构如下:

DO $$
DECLARE
    foo text := 'thisisfoo';
    myId bigint;
BEGIN
    myId = (select id from blah.things);
    insert into bar.widgets(...)
    values (myId, foo, ...);
    select * from bar.widgets;
END $$ language plpgsql;

运行此命令时,我得到:

ERROR:  query has no destination for result data
HINT:  If you want to discard the results of a SELECT, use PERFORM instead.
CONTEXT:  PL/pgSQL function inline_code_block line 9 at SQL statement
SQL state: 42601

我尝试过的事情: -将查询更改为insert into ... returning *;return select * from bar.widgets。两者都会产生错误,并且看起来像使用bar.widget返回类型创建函数是前进的唯一方法。

问题:没有办法让非函数使用变量并返回表行吗?原因是我不想将此作为函数添加到架构中。它只会使用几次,我不想弄乱架构。

1 个答案:

答案 0 :(得分:3)

您可以在select块之外运行do

...
END $$ language plpgsql;
select * from bar.widgets;

或者甚至不用do块来重写它:

insert into bar.widgets(...)
values ((select id from blah.things), 'thisisfoo', ...)
returning *;