Chapter 7. Nested Tables
Beginner
Q: | |
7-1. | The syntax for creating a nested table is similar to that for an index-by table: TYPE For example, here’s the command to create a nested table type called a_simple_udt_t; its elements consist of numeric data, each with no more than 10 digits: CREATE TYPE a_simple_udt_t IS TABLE OF NUMBER(10); |
Q: | |
7-2. | The statements are:
|