SKEWNESS
Returns the skewness of the values in the specified expression.
Syntax
SKEWNESS ( expression )
Arguments
expression
Is an expression of any type. If expression is of the exact numeric or approximate numeric data type category, except for the bit data type, the value of float type is returned. Else null value is returned. Aggregate functions and subqueries are not permitted.
Return types
float
Examples
SELECT SKEWNESS([IntNotNullColumn]) AS [Skewness] FROM [IntTable]