0
有沒有辦法在postgres中重用遊標聲明。在postgres中重用遊標聲明
例如: 我有一個像下面的函數,我想用curs1的curs1的聲明是可能的嗎?
create or replace function vin_temp_test(k date,x varchar) RETURNS numeric[] AS $$
declare
curs1 CURSOR FOR select prod_name,sum(item_val) sum_value from temp_table group by prod_name;
curs2 cursor curs1;
begin
null
end;
$$ LANGUAGE plpgsql VOLATILE;