PL/SQL 集合 - 关联数组、嵌套表和 VARRAY
原文英文,约500词,阅读约需2分钟。发表于: 。Here's a simple example of each of the three types of PL/SQL collections: Associative Arrays, Nested Tables, and VARRAYs. Associative Array Example (Index-By Table) An associative array uses an...
文章介绍了三种PL/SQL集合类型:关联数组、嵌套表和VARRAY。关联数组通过索引访问,适合键值对;嵌套表是无序且可扩展的,适合大数据集;VARRAY是有序且有固定大小,适合已知数据上限的情况。选择取决于数据需求的固定性、顺序性和间隙性。