Aggregate
SQL Aggregate Functions
Last updated
Was this helpful?
SQL Aggregate Functions
Last updated
Was this helpful?
Return average (mean) value. If no rows are selected, the result is NULL
. Aggregation are only allowed in select statements.
The data type of result is DOUBLE PRECISION
for TINYINT
, SMALLINT
, INTEGER
, and REAL
arguments, NUMERIC
with additional 10 decimal digits of precision and scale for BIGINT
and NUMERIC
arguments; DECFLOAT
with additional 10 decimal digits of precision for DOUBLE PRECISION
and DECFLOAT
arguments; INTERVAL
with the same leading field precision, all additional smaller datetime units in interval qualifier, and the maximum scale for INTERVAL
arguments.
Examples:
The highest value. If no rows are selected, the result is NULL
. Aggregate are only allowed in
select statements. The returned value is of the same data type are the parameter.
Examples:
The lowest value. If no rows are selected, the result is NULL
. Aggregates are only allowed in select statements. The returned value is of the same data type as the parameter.
Examples:
The sum of all values. If no rows are selected, the result is NULL
.Aggregates are only allowed in select statements.
Examples:
Returns true if all expressions are true. If no rows are selected, the result is NULL
. Aggregates are only allowed in select statements.
Examples:
Returns true if any expression is true. If no rows are selected, the result is NULL
. Aggregates are only allowed in select statements.
Note that if ANY
or SOME
aggregate function is placed on the right side of comparison operation or distinct predicate and argument of this function is a subquery additional parentheses around aggregate function are required, otherwise it will be parsed as quantified predicate.
Examples:
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO
TODO