Updating Rows in Nested Table using 'THE' or 'TABLE' keywords
In this lesson, we will look at updating data within a nested table. To update the data within a nested table, the DML statement should have the THE or the TABLE keywords. To update a particular record within the nested table, you must select a particular record within the main table and the nested table. This calls for flattening the DML statement.
Flattening requires the use of the THE and the TABLE keywords.
To query, update, insert, or to delete records from the nested table, it must be queried as if it were a single table.
This is achieved by the usage of "THE" or "TABLE" functions.
Let us look at the following DML statement, which updates the nested table within the SALE_HEADER table:
In the example above, we first selected the nested table from the SALE_HEADER table, and then updated the nested table. The following diagram explains the syntax for updating rows within a nested table:
Updating rows within Nested Table Syntax
What is a VARRAY?
VARRAY stands for variable-size array. It is an array that can be either manipulated as a whole or individually as elements.
It has a maximum size and can contain 0 to any number of elements up to the maximum specified.
VARRAY is stored in-line and that means the data of a column of VARRAY type is stored along with the remaining data of the row.
You can use VARRAY data type for: