Example: UDT and a One-Dimensional ARRAY Type - Advanced SQL Engine - Teradata Database

SQL Data Definition Language Syntax and Examples

Product
Advanced SQL Engine
Teradata Database
Release Number
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
wgr1555383704548.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1144
lifecycle
previous
Product Category
Teradata Vantage™

This example first creates a structured UDT named employee and then creates ARRAY types based on it using both Teradata-style and Oracle-style syntax.

     CREATE TYPE employee AS (
       first_name  CHARACTER(10),
       last_name   CHARACTER(10),
       employee_id INTEGER)
       …;

The first example creates the ARRAY type structudt_ary , which is based on employee, using Teradata-style syntax.

     CREATE TYPE structudt_ary AS 
     employee ARRAY[20];

The next example creates the same ARRAY type as a VARRAY type using Oracle-style syntax.

     CREATE TYPE structudt_ary AS 
     VARRAY(20) OF employee;