Examples | ARRAY_GET Function| Teradata Vantage - Example: Query a 1-D ARRAY Data Type and Table using ARRAY_GET - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.10
Published
July 2021
Language
English (United States)
Last Update
2021-07-27
dita:mapPath
tpf1598412463935.ditamap
dita:ditavalPath
tpf1598412463935.ditaval
dita:id
B035-1143
lifecycle
previous
Product Category
Teradata Vantageā„¢

Consider the following 1-D ARRAY data type and table.

CREATE TYPE item_price AS VARRAY(50) OF DECIMAL(7,2);
CREATE TABLE inventory (itemkind INTEGER,
                        regular_price item_price,
                        sale_price item_price);

In the following query, ARRAY_GET returns the element value located in position 40 of the regular_price array.

SELECT ARRAY_GET(regular_price,40) FROM inventory;