Creat an empty procedure : Procedure Definition « Stored Procedure Function « Oracle PL / SQL
- Oracle PL / SQL
- Stored Procedure Function
- Procedure Definition
Creat an empty procedure
SQL>
SQL>
SQL> create or replace procedure my_proc as
2 begin
3 null;
4 end my_proc;
5 /
Procedure created.
SQL>
SQL>
Related examples in the same category