VARRAYs are named arrays of varying length.
VARRAY data is held directly in the containing row of the table.
VARRAY of up to four integer phone extensions.
phonebook for John Smith and David Andrews.
|
VARRAY of extensions for the person with social security number 123897766.
SQL> SELECT pb.phperson.pname.fname, pb.extensions FROM phonebook pb 2 WHERE pb.phperson.ssno = 123897766; PHPERSON.PNAME.FNAME EXTENSIONS ----------------------------- -------------------------- John EXTENSIONS_T(345, 989) |