Nested table is an Oracle data type used to support columns containing multivalued attributes, in this case, columns that can hold an entire sub-table.Nested tables allow items of
TABLE
type to include tables with distinct column names.
The nested table type is useful for models requiring referential integrity, and is especially suited to master-detail and one-to many relationships. |
dependents_t
to hold tables of person_t
objects.
|
person_t
holds information for a single line item, anddependents_t
is a table of the person_t
type.