STDEVP
Last updated
Last updated
Returns the statistical standard deviation for the population for all values in the specified expression. (STDVEP in Transact-SQL).
STDEVP ( [ ALL | DISTINCT ] expression )
Code:
SELECT
STDEVP(VACATIONHOURS) AS STDEVP_VACATIONHOURS
FROM
HumanResources.Employee;
Result:
STDEVP_VACATIONHOURS|
--------------------+
28.736540767245085|