Which Of The Following Syntax Is Correct To Create A Nested #614
Which of the following syntax is correct to create a Nested Array?
This multiple choice question (MCQ) is related to the book/course
gs gs115 Structured Query Language.
It can also be found in
gs gs115 PL/SQL Packages, Collections and Transactions - PL/SQL Collections - Quiz No.1.
Which of the following syntax is correct to create a Nested Array?
TABLE OF element_type [NOT NULL]; table_name type_name;TYPE type_name IS TABLE OF element_type [NOT NULL]; table_name;TYPE type_name [NOT NULL]; table_name type_name;TYPE type_name IS TABLE OF element_type [NOT NULL]; table_name type_name;