关于存储过程的调用语句。
存储过程test_proc如下:
create or replace procedure test_proc is
begin
dbms_output.put_line('hello world');
end;
SQL命令板里面测试的时候可以直接用begin end语句块来调用,使用例子如下:
test_proc;
或者使用
call test_pro();