Which Of The Following Syntax Is Correct To Create An #613
Which of the following syntax is correct to create an Associative 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 an Associative Array?
TABLE OF element_type [NOT NULL] INDEX BY subscript_type; table_name type_name;TYPE type_name IS TABLE OF element_type [NOT NULL] INDEX BY subscript_type; table_name type_name;TYPE type_name IS TABLE OF element_type [NOT NULL]; table_name type_name;TYPE type_name [NOT NULL] INDEX BY subscript_type; table_name type_name;