Example: Use ARRAY_AGG - Advanced SQL Engine - Teradata Database

JSON Data Type

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
September 2020
Language
English (United States)
Last Update
2021-01-23
dita:mapPath
gzn1554761068186.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1150
lifecycle
previous
Product Category
Teradata Vantageā„¢
Aggregate the job positions into arrays containing the ages of the employees in those jobs.
The example uses the table(s) created earlier.
SELECT pos, ARRAY_AGG(age ORDER BY empId, NEW intarr5()) 
FROM employeeTable 
GROUP BY pos
ORDER BY pos;
Result:
pos         ARRAY_AGG(age ORDER BY empId ASC, NEW intarr5())
------------------------------------------------------------
engineer    (24,34,25,21)
executive   (50,51,52,52,60)
manager     (40,41,45,48)
salesman    (31,32,33,40)