例如:过程
create or replace procedure sp_test
(v_a int,
v_cur sys_refcursor)
asbegin
  if Nvl(v_a, 0) = 0 then
  open cursor for select * from test1;
  end if;
end;如何在oracle developer中调用该过程