1、创建
create or replace procedure sayhelloword
as
begin
dbms_output.put_line('hello world');
end;
2、调用
①execsayhelloword();
②begin
sayhelloword();
sayhelloword();
end;
3、验证
原文链接:https://www.f2er.com/oracle/209093.html
1、创建
create or replace procedure sayhelloword
as
begin
dbms_output.put_line('hello world');
end;
2、调用
①execsayhelloword();
②begin
sayhelloword();
sayhelloword();
end;
3、验证
原文链接:https://www.f2er.com/oracle/209093.html