Aggregate functions are a subset of SQL functions that compute a single value from multiple input rows, mostly used in `SELECT` queries with a `GROUP BY` clause. Practically all modern RDBMS feature aggregate functions. Typical examples include `COUNT()`, `SUM()`, `MIN()`, `MAX()`, and `AVG()`.
Aggregate functions are a subset of SQL functions that compute a single value from multiple input rows, mostly used in SELECT
queries with a GROUP BY
clause. Practically all modern RDBMS feature aggregate functions.
Typical examples include COUNT()
, SUM()
, MIN()
, MAX()
, and AVG()
.