Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Reference » SQL Functions » Alphabetical list of functions

ATAN2 function [Numeric] Next Page

AVG function [Aggregate]


Computes the average, for a set of rows, of a numeric expression or of a set unique values.

Syntax 1

AVG( numeric-expression | DISTINCT numeric-expression )

Syntax 2

AVG( numeric-expression ) OVER ( window-spec )

window-spec : see Syntax 2 instructions in the Usage section below

Parameters

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.

Remarks

This average does not include rows where the numeric-expression is the NULL value. Returns the NULL value for a group containing no rows.

Syntax 2 represents usage as a window function in a SELECT statement. As such, elements of window-spec can be specified either in the function syntax (inline), or in conjunction with a WINDOW clause in the SELECT statement. See the window-spec definition provided in WINDOW clause.

For more information about using window functions in SELECT statements, including working examples, see Window functions.

See also
Standards and compatibility
Example

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 ;