COVAR_POP()
Population covariance
DOUBLE PRECISION
COVAR_POP ( <expr1>, <expr2> )
| Parameter | Description |
|---|---|
exprN |
Numeric expression.It may contain a table column, a constant, a variable, an expression, a non-aggregate function or a UDF.Aggregate functions are not allowed as expressions. |
The function COVAR_POP returns the population covariance for a pair of numerical expressions.
The function COVAR_POP(<expr1>, <expr2>) is equivalent to
(SUM(<expr1> * <expr2>) - SUM(<expr1>) * SUM(<expr2>) / COUNT(*)) / COUNT(*)
If the group or window is empty, or contains only NULL values, the result will be NULL.