1、创建
create or replace procedure sayhelloword
as
begin
dbms_output.put_line('hello world');
end;
2、调用
①execsayhelloword();
②begin
sayhelloword();
sayhelloword();
end;
3、验证
1、创建
create or replace procedure sayhelloword
as
begin
dbms_output.put_line('hello world');
end;
2、调用
①execsayhelloword();
②begin
sayhelloword();
sayhelloword();
end;
3、验证