Computes the average, for a set of rows, of a numeric expression or of a set unique values.
AVG( numeric-expression | DISTINCT numeric-expression )
numeric-expression The expression whose average is calculated over a set of rows.
DISTINCT numeric-expression Computes the average of the unique numeric values in the input.
This average does not include rows where the numeric-expression is the NULL value. Returns the NULL value for a group containing no rows.
SQL/2003 Core feature. Syntax 2 is feature T611.
The following statement returns the value 49988.623200.
SELECT AVG( Salary ) FROM Employees ;
The following statement could be used to determine the average based on unique prices in the production list:
SELECT AVG( DISTINCT ListPrice ) FROM Production ;