oracle数据库的存储过程出现了pls-00103错误?

2025-05-17 21:54:36
推荐回答(1个)
回答(1):

create or replace procedure GetMould (int_top in number,out_count out number,cur_out out sys_refcursor)
is

begin
select count(*)into out_count from mouldmanager;
end GetMould;