Returns the sample covariance of a set of number pairs.
COVAR_SAMP( dependent-expression, independent-expression )
COVAR_SAMP( dependent-expression, independent-expression ) OVER ( window-spec )
window-spec : see Syntax 2 instructions in the Remarks section below
dependent-expression The variable that is affected by the independent variable.
independent-expression The variable that influences the outcome.
DOUBLE
This function converts its arguments to DOUBLE, and performs the computation in double-precision floating point. If the function is applied to an empty set, then it returns NULL.
Both dependent-expression and independent-expression are numeric. The function is applied to the set of (dependent-expression, independent-expression) pairs after eliminating all pairs for which either dependent-expression or independent-expression is NULL.
For more information about the statistical computation performed, see Mathematical formulas for the aggregate functions.
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.
SQL/2003 SQL foundation feature (T621) outside core SQL.
The following example returns the value 74782.9460054052.
SELECT COVAR_SAMP( Salary, ( 2008 - YEAR( BirthDate ) ) ) FROM Employees; |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |