Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有一种简单的方法可以在 Oracle PL/SQL 中声明动态数组?
我需要使用一个可以包含 100,000 个数字的数组,而其他时候我只需要存储 3 个数字
PL/SQL 中有三种类型的集合。只有varrays具有固定的最大元素数。如果您改用嵌套表或关联数组,则可以添加任意数量的元素。
varrays
进一步阅读:PL/SQL 集合和记录