一、在数据库中打开SQL窗口,编写:
1 create or replace procedure sayHellowWorld--新建或替换sayHellowWorld,sayHellowWorld为方法名,可自行更改 2 as 3 begin 4 dbms_output.put_line(‘你好,世界!‘);--使用这个包进行打招呼,输出文字 5 end;
二、调用存储过程
方法1:
exec 方法名();
方法2:
begin
方法名();
方法名();
……(可调用多个)
end;
a.cmd调用实例
【学习总结,仅供参考】