0

私はEXECUTE(動的SQL用)とSETOF(結果がリストとして返される)を使用しましたが、それは間違っています:(

create table test as
select 1 id, 'safd' data1,'sagd' data2
union
select 2 id, 'hdfg' data1,'sdsf' data2;

create or replace function test2(a varchar) returns SETOF record as
$BODY$
declare x record;
begin
for x in execute a loop
RETURN NEXT x;
end loop;
return;
end;
$BODY$
LANGUAGE 'plpgsql' VOLATILE;

select * from test2('select * from test');
4

3 に答える 3

1

返されるレコードの構造を事前に知っておく必要があります

select * from test2('select * from test') s(a int, b text, c text);
 a |  b   |  c   
---+------+------
 1 | safd | sagd
 2 | hdfg | sdsf

または、返されるセットが常にテスト テーブルのセットである場合は、Akash の提案されたソリューションを使用します。

于 2013-05-09T05:21:26.473 に答える
1

交換

create or replace function test2(a varchar) returns SETOF RECORD as

create or replace function test2(a varchar) returns SETOF test as
                                                          ^^^^ name of table (it specifies the datatypes of the set)    
于 2013-05-09T02:27:12.293 に答える