Syntax
Parameters
Valid values for the expression include column names or functions that return a column name (or columns) that contain numeric values.
The
AVG() aggregate function ignores rows with NULL values. For example, an AVG from 3 rows containing 1, 2, and NULL returns 1.5 because the NULL row is not counted. To calculate an average that includes NULL, use SUM(COLUMN)/COUNT(*).
Return Types
NUMERICif the input is typeINTEGER,BIGINTorNUMERICDOUBLE PRECISIONif the input is typeREALorDOUBLE PRECISION
Precision and Determinism
ApplyingAVG to REAL and DOUBLE PRECISION is subject to floating point arithmetic accuracy limitations and its resulting error.
This error may add up when aggregating multiple values.
The order of operations while computing the aggregate is non-deterministic.
This can lead to varying total floating point error when running a query multiple times.
If this is not acceptable for your use-case, aggregate on NUMERIC data instead.
Example
Thelevels table contains the following values:
Rows: 10Execution time: 6.00ms
maxpoints across all levels in the levels table:
Rows: 1Execution time: 8.82ms