Nested Table Array Type Definition
This is a translation reference to convert the Oracle Nested Table Array Declaration to Snowflake
This section is a work in progress, information may change in the future.
This section is for the PL/SQL Version of the Nested Table Arrays, for the Standalone Version please see Nested Table Type Definition.
Some parts in the output code are omitted for clarity reasons.
Description
In the database, a nested table is a column type that stores an unspecified number of rows in no particular order.
When you retrieve a nested table value from the database into a PL/SQL nested table variable, PL/SQL gives the rows consecutive indexes, starting at 1. Using these indexes, you can access the individual rows of the nested table variable. The syntax is
variable_name(index)
. The indexes and row order of a nested table might not remain stable as you store and retrieve the nested table from the database.
For the translation, the type definition is replaced by an ARRAY Semi-structured Data Type and then its usages are changed accordingly across any operations. Please note how the translation for Nested Tables and Varrays are the same.
In order to define a Nested Table Array type, the syntax is as follows:
To declare a variable of this type:
Sample Source Patterns
Nested Table Array definitions
This illustrates how to create different nested table arrays, and how to migrate the definitions for the variables.
Oracle
Snowflake
Nested Table iteration
Oracle
Snowflake
Note that a UDF was added to implement the functionality for the update of the element.
This UDF will be added in later revisions.