我正在编写一个需要同时操作多行并且需要对它们进行索引的函数。在阅读了有关 Oracle pl/sql 的几个小时后,我想我可以创建一个嵌套表类型的集合。由于我找不到明确的答案,而且试错法需要很长时间。这是问题部分: 问题:填充嵌套表集合的最佳实践是什么?甲骨文 PL/SQL
type partsTable is table of Parts_north_wing%rowtype;
pt PartsTable;
index number;
cursor pCursor is select * from Parts_north_wing;
begin
index := 1;
open pCursor;
loop
fetch pCursor into tempRow;
pt(index) := tempRow;
index := index + 1;
exit when pCursor%notfound;
end loop;
close pCursor;