当前位置: 代码迷 >> Oracle管理 >> Oracle的存储过程会返回一个select查询结果集吗
  详细解决方案

Oracle的存储过程会返回一个select查询结果集吗

热度:133   发布时间:2016-04-24 04:12:38.0
Oracle的存储过程能返回一个select查询结果集吗
使用存储过程,想返回一个像下面图的结果集。 这个在PL/SQL里面能实现吗?


因为经常要使用很多联合、多表等查询。而且条件也不同,所以想做个存储过程来保存起来,省得以后每次查询都要重新编写SQL。
刚刚使用Oracle不多久,每次的返回结果都是在输出里面显示,但是在这里面是没有办法对表操作的。

各位大大,这个方法PL/SQL里面能实现吗?
------解决思路----------------------
引用:

举例:

--创建procedure
create or replace procedure sql_test(out_return out sys_refcursor) is
begin
  open out_return for 'select * from tgp_funds';
end;



--引用

declare
  cur1   SYS_REFCURSOR;
  i      tgp_funds%rowtype;
begin
 sql_test(cur1);
  loop
    fetch cur1
      into i;
    exit when cur1%notfound;
    dbms_output.put_line('----------------:' 
------解决思路----------------------
 i.fnd_id);--fnd_id为表tgp_funds中的fnd_id 列
  end loop;
  close cur1;
end;


------解决思路----------------------
引用:
Quote: 引用:

举例:

--创建procedure
create or replace procedure sql_test(out_return out sys_refcursor) is
begin
  open out_return for 'select * from tgp_funds';
end;



--引用

declare
  cur1   SYS_REFCURSOR;
  i      tgp_funds%rowtype;
begin
 sql_test(cur1);
  loop
    fetch cur1
      into i;
    exit when cur1%notfound;
    dbms_output.put_line('----------------:' 
------解决思路----------------------
 i.fnd_id);--fnd_id为表tgp_funds中的fnd_id 列
  end loop;
  close cur1;
end;


正解++
  相关解决方案