我写了两个存储过程
第一个编译通过
create or replace procedure sp_test
(ref_cursor out sys_refcursor)
as
begin
open ref_cursor for select * from products;
end sp_test;第二个存储过程调用第一个的可是编译出现问题
create or replace procedure call_sp 
as
ref_cursor sys_refcursor;
begin
call sp_test(ref_cursor);(这一行编译错误了)
end call_sp;编译时说"PLS-00103:出现符号"SP_TEST"在需要下列之一时::=.(@%;符号":="被替换为"SP_TEST"后继续"
我用的是PL/SQL Developer软件,一下不知道这该怎么解决了