KURTOSIS
Returns the kurtosis of a given set.
Syntax
KURTOSIS ( 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
decimal
Examples
SELECT KURTOSIS([DecimalNotNullColumn]) AS [Kurtosis] FROM [DecimalTable]