oracle 存储过程的学习

来源:互联网 发布:unity3d 联机 编辑:程序博客网 时间:2024/05/16 12:37
创建存储过程
SQL> create or replace procedure proc_helloworld  2  is  3  begin   4  dbms_output.put_line('helloworld');  5  end;  6  / 


显示存储过程

SQL> select text from user_source where name='proc_helloworld';



运行存储过程

SQL> exec proc_helloworld