1.第一个存储过程,打印hello word /* 调用存储过程 exec sayhello(); begin sayhello(); end; / */ create or replace procedure sayhello(自己定义的名字) as --说明部分 begin dbms_output.put_line("hello word"); end; /