Aggregation Functions
This page lists the aggregation functions available in the GSQL query language. These functions take a single SET/BAG
, SetAccum/BagAccum
, or ListAccum
as the parameter and return an aggregated value from all members of the set or bag.
The |
avg()
Description
Returns the average of all elements in a set or bag. The function can only take set/bag expressions whose members are numeric types.
Return type
A numeric type. If all members of the set/bag expression are integers, the return value will also be rounded down to be an integer.