This article explains the use of STDEVP function in sql server with example.
STDEVP function is used to perform statistical standard deviation for the population of all values in the given expression.It can be used with numeric type columns only. Null values are ignored while performing deviation for the population of an expression.
STDEVP (expression )
SELECT STDEVP(Royalty)
FROM Products
Output
19.0176329973953
Above example returns standard deviation for population of royalty column.