COVAR_POP returns the population covariance of a pair of numbers.
Syntax:
COVAR_POP(expression1, expression2)
Example:
SELECT id, COVAR_POP(list_price,min_price) as RESULT
FROM product_information
GROUP BY id;
Covar_pop – Oracle SQL Function
COVAR_POP returns the population covariance of a pair of numbers.
Syntax:
COVAR_POP(expression1, expression2)
Example:
SELECT id, COVAR_POP(list_price,min_price) as RESULT
FROM product_information
GROUP BY id;