Examples | ARRAY_MIN Function | Teradata Vantage - Example: Querying a 1-D ARRAY Data Type and Table using ARRAY_MIN - 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 1-D ARRAY data type and table.

CREATE TYPE item_price AS DECIMAL(7,2) ARRAY[20];
CREATE TABLE inventory (itemkind INTEGER,
                        regular_price item_price,
                        sale_price item_price);

The following query returns an element value, which is the minimum of all the element values in the regular_price array.

SELECT ARRAY_MIN(regular_price) FROM inventory;

The following query returns an element value, which is the minimum of the element values within the specified scope of the regular_price array.

SELECT ARRAY_MIN(regular_price, 5, 10)FROM inventory;