Aggregate
Any value
Returns any value from the input or NULL if there are zero input rows –> learn more
ANY_VALUE(@variable)
Return type
dynamic (input-dependent)
Parameters
Name
Type
Allowed values
Required
Placeholder (in UI)
Average
Returns the average of all non-null values –> learn more
AVG(@variable)
Return type
float
Parameters
Count
Returns the count of all non-null values –> learn more
COUNT([@distinct ]@variable)
Return type
integer
Parameters
Name
Type
Allowed values
Required
Placeholder (in UI)
Logical and
Returns the logical AND of all non-NULL expressions –> learn more
LOGICAL_AND(@variable)
Return type
boolean
Parameters
Logical or
Returns the logical OR of all non-NULL expressions –> learn more
LOGICAL_OR(@variable)
Return type
boolean
Parameters
Max
Returns the maximum value of all non-null inputs –> learn more
MAX(@variable)
Return type
dynamic (input-dependent)
Parameters
Name
Type
Allowed values
Required
Placeholder (in UI)
Min
Returns the minimum value of all non-null inputs –> learn more
MIN(@variable)
Return type
dynamic (input-dependent)
Parameters
Name
Type
Allowed values
Required
Placeholder (in UI)
String aggregate
Returns a string obtained by concatenating all non-null values –> learn more
STRING_AGG([@distinct ]@variable[, @delimiter][ LIMIT @limit])
Return type
string
Parameters
Name
Type
Allowed values
Required
Placeholder (in UI)
Sum
Returns the sum of all values, ignoring nulls –> learn more
SUM(@variable)
Return type
dynamic (input-dependent)
Parameters
Last updated
Was this helpful?