tiancai

create or replace procedure p_test(p_cur out sys_refcursor)
as
begin
     open p_cur for select * from F_RELATION;
end p_test;


DECLARE
test_cur sys_refcursor  ;
begin
p_test(test_cur);
end;


分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-02-11
  • 2022-02-02
  • 2022-12-23
  • 2022-01-06
  • 2021-05-21
  • 2021-12-07
猜你喜欢
  • 2021-04-25
  • 2021-11-27
  • 2022-02-23
  • 2022-01-05
  • 2022-01-25
相关资源
相似解决方案