在 Oracle PL/SQL 中声明动态数组
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/18613244/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Declare dynamic array in Oracle PL/SQL
提问by FireVortex
Is there an easy way to declare a dynamic array in Oracle PL/SQL?
是否有一种简单的方法可以在 Oracle PL/SQL 中声明动态数组?
I need to use an array that can contain 100,000 numbers and other times I need to store only 3 numbers
我需要使用一个可以包含 100,000 个数字的数组,其他时候我只需要存储 3 个数字
回答by Vincent Malgrat
There are three types of collection in PL/SQL. Only the varrays
have a fixed maximum number of elements. If you use a nested tableor an associative arrayinstead, you can add as many element as you want.
PL/SQL 中有三种类型的集合。只有varrays
元素的最大数量是固定的。如果您改用嵌套表或关联数组,则可以添加任意数量的元素。
For further reading: PL/SQL Collections and Records
进一步阅读:PL/SQL 集合和记录