Nested funtion
От
Sridhar N Bamandlapally
Тема
Nested funtion
Дата
Msg-id
CAGuFTBW18T5OQ7miMsDFEDS+skPjQ55X2ppCXdmJBWD2SsSafQ@mail.gmail.com
Список
Дерево обсуждения
Nested funtion Sridhar N Bamandlapally <sridhar.bn1@gmail.com>
Re: Nested funtion Pavel Stehule <pavel.stehule@gmail.com>
Re: Nested funtion "David G. Johnston" <david.g.johnston@gmail.com>
Hi
Is there any way to create nested function?
oracle to postgres migration required super function variable reference into nested function without nested function parameter
Oracle sample:
-------------------------------
create or replace function f1(n number) return number
is
vs number:=1;
function nf1(m number) return number is
begin
return vs + m + n;
end;
begin
return nf1(2);
end;
/
run:
--------
SQL> select f1(9) from dual;
F1(9)
----------
12
Thanks
Sridhar BN
В списке pgsql-hackers по дате отправления