0

In plsql, we can create function/procedure within an anonymous block and reuse it.

example:

declare
   procedure TEST_DATE
   as
   begin
     dbms_output.put_line (sysdate);
   end;
begin
   TEST_DATE;
end;

could we do similar in pgplsql ?

a_horse_with_no_name
  • 497,550
  • 91
  • 775
  • 843
snowrock
  • 121
  • 1
  • 6

0 Answers0