这是我的陈述:
CREATE or replace FUNCTION set_val(
_val character varying(100) ) --5
RETURNS setof "table_test" AS
$body$
declare results "table_test"%rowtype;
begin
update "table_test"
set "value" = $1
where "gender" = 'm'
returning * into results;
if not found then
insert into "table_test"("value")
values($1)
returning * into results;
end if;
return next results;
end;
$body$
LANGUAGE 'plpgsql' ;
只要只有1行受到影响,它就能正常工作。但是当更多行受到影响时,它不会。
答案 0 :(得分:4)
当PL / pgSQL函数必须返回setof时,必须使用"RETURN NEXT" or "RETURN QUERY"。
答案 1 :(得分:0)
我终于明白了 我使用循环返回下一步。 感谢
这是我的代码
declare result table1%rowtype;
begin
for result in update table1 set ... where ... returning * loop
return next result;
end loop;
end;