ARRAYLENGTH
This section contains reference documentation for the ARRAYLENGTH function.
Last updated
Was this helpful?
This section contains reference documentation for the ARRAYLENGTH function.
Returns the length of a multi-value column or array expression. Pinot also accepts the alias CARDINALITY.
ARRAYLENGTH supports arrays of INT, LONG, FLOAT, DOUBLE, BIG_DECIMAL, STRING, and BYTES.
ARRAYLENGTH('colName')
These examples are based on the Hybrid Quick Start.
select ARRAYLENGTH(RandomAirports) AS length, count(*)
from airlineStats
GROUP BY length
ORDER BY count(*) DESC
LIMIT 51
5382
37
267
33
223
17
166
22
160
The count(*) values will increase each time we execute the query as data is constantly being ingested by the Hybrid Quick Start.
Last updated
Was this helpful?
Was this helpful?

