Returns the statistical standard deviation for the population for all values in the given expression.
STDEVP(expression)
float
If STDEVP is used on all items in a SELECT statement, each value in the result set is included in the calculation. STDEVP can be used with numeric columns only. Null values are ignored.
This example returns the standard deviation for the population for all royalty values in the titles table.
USE pubs
SELECT STDEVP(royalty)
FROM titles