Oracle 报错Error(3,8): PLS-00201: identifier 'T_REF_CURSOR' must...
发布网友
发布时间:2022-04-24 09:33
我来回答
共2个回答
热心网友
时间:2022-04-14 04:47
可能是t_ref_cursor没有进行定义吧。像下面这样写试一下,将t_ref_cursor定义一下,看看是否好用。
create or replace function get_procts() return t_ref_cursor is
cursor t_ref_cursor is
select op.*
from object_procts op
order by op.id;
v_procts_ref_cursor t_ref_cursor;
begin
for v_procts_ref_cusor in t_ref_cursor;
return v_procts_ref_cursor;
end get_procts;