Oracle/PL/SQL

15일차 # 3-12: Nested Blocks

Bohemian life 2012. 4. 24. 21:14

       declare


 procedure p1

 is

 begin

   null;

 end;


begin

 null;


 begin

   null;

   p1;

 end;


exception

 when others then


   begin

     null;

     p1;

   end;


end;

/