create or replacefunction get_productsreturn t_ref_cursor isv_products_ref_cursor t_ref_cursor;beginopen v_products_ref_cusor forselect value(op)from object_products oporder by op.id;return v_products_ref_cursor;end get_products;
1 回答
慕斯王
TA贡献1864条经验 获得超2个赞
可能是t_ref_cursor没有进行定义吧。像下面这样写试一下,将t_ref_cursor定义一下,看看是否好用。
create or replace function get_products() return t_ref_cursor is
cursor t_ref_cursor is
select op.*
from object_products op
order by op.id;
v_products_ref_cursor t_ref_cursor;
begin
for v_products_ref_cusor in t_ref_cursor;
return v_products_ref_cursor;
end get_products;
- 1 回答
- 0 关注
- 96 浏览
添加回答
举报
0/150
提交
取消