CREATE TYPE typename AS VARRAY(n) OF datatype
CREATE TYPE | Required keywords for type definition. |
typename | Unique name for type. |
AS VARRAY | Required keywords for varray definition |
n | Integer that sets the boundary for the number of entries in the varray |
OF | Required keyword |
datatype | Data type specification for varray. This can be a built-in data type or an object type. It cannot be another varray type, a nested table type, or a LOB type. |