avgReturn the average value from the input column.
bit_andReturns the bitwise AND of all non-NULL input values.
bit_orReturns the bitwise OR of all non-NULL input values.
bool_andReturns true if all non-NULL inputs are true, otherwise false.
bool_orReturns true if any non-NULL input is true, otherwise false.
countReturn the count of non-NULL inputs.
everyAlias of bool_and
Returns true if all non-NULL inputs are true, otherwise false.
firstReturn the first non-NULL value.
maxReturn the maximum non-NULL value seen from input.
minReturn the minimum non-NULL value seen from input.
string_aggConcatenate all non-NULL input string values using a delimiter.
sumCompute the sum of all non-NULL inputs.
The GROUPING function is a special function for determining which input
expressions are taking part in a group's aggregation.
See GROUP BY for more details.