0
我是絕對的noob,找不到這個答案。
如何將結果添加到臨時表中?
也許你們對我有改善我的代碼的一些提示?在臨時表中保存遊標
我在這裏用遊標在結果中創建了一個函數。但我需要:
drop function if exists non_married_presidents();
create or replace function non_married_presidents()
returns varchar as $$
declare
c_emp cursor for
select name, birth_year from president
where id not in(select pres_id from pres_marriage);
begin
for emp in c_emp loop
raise notice 'name: %, birth_year: %', emp.name, emp.birth_year;
end loop;
end;
$$language plpgsql;
電話:
select non_married_presidents();