我正在寻找返回表的 PostgreSQL 函数的帮助。我想知道是否有办法更新正在返回的表。
这是一个例子,
create or replace function fn_function()
return table(column01 integer, column02 integer, column03 boolean) as $$
return query
select col1, col2, false
from tableXYZ;
/* how can i update the table, let's say column03 before the function exits */
end
$$ language plpgsql;
我可以给要返回的表一个别名吗?
使用的 postgre 版本是 9.0.8。
提前谢谢。