What is the difference between index by table and nested tables?
Hereof, what is the difference between nested table and Varray?
Difference b/w nested table and varray: Separate Table Space will be created for nested table which is other than the parent table's table space. If a varray size is less than 4 KB, it is stored inside the table of which it is a column otherwise, it is stored outside the table but in the same table space.
People also ask, what is PL SQL table and nested table?
Introduction to PL/SQL nested tables Nested tables are single-dimensional, unbounded collections of homogeneous elements. First, a nested table is single-dimensional, meaning that each row has a single column of data like a one-dimension array. Second, a nested table is unbounded.
A record is a group of related data items stored in fields, each with its own name and datatype. You can think of a record as a variable that can hold a table row, or some columns from a table row. The fields correspond to table columns. Records are composed of a group of fields, similar to the columns in a row.