Which of the following is the correct syntax of Associative array of number?
Options
- TYPE numbers_aat IS NUMBER;
- TYPE numbers_aat IS TABLE OF NUMBER INDEX BY PLS_INTEGER;
- TYPE numbers_aat IS TABLE;
- TYPE numbers_aat IS TABLE INDEX BY PLS_INTEGER;
CORRECT ANSWER : TYPE numbers_aat IS TABLE OF NUMBER INDEX BY PLS_INTEGER;
Write your comments