Example: Creating Tables and Set Elements in a 3-D Array - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
zsn1556242031050.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1143
lifecycle
previous
Product Category
Teradata Vantageā„¢

Consider the following structured UDT:

CREATE TYPE measures_UDT AS(amplitude INTEGER,
                            phase     INTEGER,
                            frequency INTEGER);

The following statement creates a 3-D ARRAY data type named shots with an element type of measures_UDT.

CREATE TYPE shots AS measures_UDT ARRAY[-2:2][-5:5][-3:3];

The following statement creates a table with a column named shot_ary. The data type of the shot_ary column is shots, which is a 3-D ARRAY type.

CREATE TABLE seismic_table (id INTEGER, shot_ary shots);

The following query selects the value of an element from the 3-D array.

SELECT shot_ary[-1][1][3] FROM seismic_table;