使用存储过程,想返回一个像下面图的结果集。 这个在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;
------解决思路----------------------
正解++