declare
cursor c_1 is select a.*, a.rowid from an_test a;
type t_1 is table of an_test%rowtype;
type l_row_id is table of UROWID;
tab t_1;
row l_row_id;
begin
open c_1;
loop
fetch c_1 bulk collect into tab, row limit 1000;
...
end loop;
end;
我正在尝试执行上面的代码,但它给了我这样的错误:
PLS-00597:INTO 列表中的表达式“选项卡”类型错误。
有没有其他/替代方法可以做到这一点?
提前致谢。