如何调用含out参数的存储过程
对于 out 参数的过程,只能在block 里调用,而且必须传入参数。
declare
v_retcode text;
v_id integer;
begin
CALL proc1(v_id, v_retcode);
end;
/