In SQL Server the STDEVP()
function returns the statistical standard deviation for the population for all values in the specified expression.
Syntax
The function can be used as an aggregate function or as an analytical/window function.
When used as an aggregate function, the syntax goes like this:
STDEVP ( [ ALL | DISTINCT ] expression )
And as an analytical function:
STDEVP ([ ALL ] expression) OVER ( [ partition_by_clause ] order_by_clause)
The expression must be a numeric expression.
Example
Suppose we have a table like this:
SELECT * FROM Dogs;
Result:
DogName Activity Score ------- ----------- ----- Bruno Fetch Stick 43 Cooper Fetch Stick 43 Max Fetch Stick 91 Bruno Wag Tail 65 Cooper Wag Tail 51 Max Wag Tail 87 Bruno Keep Quiet 3 Cooper Keep Quiet null Max Keep Quiet 1 null Catch Cat null
We can use the STDEVP()
function against the Score
column like this:
SELECT STDEVP(Score) FROM Dogs;
Result:
31.52776554086889
The STDEVP()
function ignores NULL values and so these aren’t factored into the results.
The DISTINCT
Argument
By default, all rows are evaluated, regardless of whether they contain unique values. However, we can use the DISTINCT
keyword to specify that only distinct (unique) values are evaluated:
SELECT STDEVP(DISTINCT Score) FROM Dogs;
Result:
33.64399452126544
We can see that this has changed the result slightly. This is because our underlying data contains duplicates – two rows contain 43. When we used the DISTINCT
keyword, the STDEVP()
function treated those two as one. This therefore produced a different result.
The ALL
Argument
By default, all rows are evaluated regardless of whether they contain duplicates. In other words, this is the case when we don’t use the DISTINCT
argument to eliminate duplicates from evaluation.
However, we also have the option of using the ALL
keyword to explicitly specify that all values are evaluated:
SELECT STDEVP(ALL Score) FROM Dogs;
Result:
31.52776554086889
We can see that this result is the same as the first example. That’s because the functionality is exactly the same when we use the ALL
keyword.
The OVER
Clause
We can include an OVER
clause in order to use STDEVP()
as a window function.
Example:
SELECT
Activity,
DogName,
Score,
STDEVP(Score) OVER(ORDER BY Activity) AS "STDEVP"
FROM Dogs;
Result:
Activity DogName Score STDEVP ----------- ------- ----- ------------------ Catch Cat null null null Fetch Stick Bruno 43 22.627416997969522 Fetch Stick Cooper 43 22.627416997969522 Fetch Stick Max 91 22.627416997969522 Keep Quiet Bruno 3 32.97514215283992 Keep Quiet Cooper null 32.97514215283992 Keep Quiet Max 1 32.97514215283992 Wag Tail Bruno 65 31.52776554086889 Wag Tail Cooper 51 31.52776554086889 Wag Tail Max 87 31.52776554086889
Here, I used an ORDER BY
clause in the OVER
clause to specify the logical order in which the operation is performed.
If we were to put another ORDER BY
clause at the end of the query, it would determine how the result set is sorted.
Partitioning the Results
The OVER
clause also accepts a PARTITION BY
clause that allows us to partition the results by a given column.
Here’s an example:
SELECT
Activity,
DogName,
Score,
STDEVP(Score) OVER(PARTITION BY Activity) AS "STDEVP"
FROM Dogs;
Result:
Activity DogName Score STDEVP ----------- ------- ----- ------------------ Catch Cat null null null Fetch Stick Bruno 43 22.627416997969522 Fetch Stick Cooper 43 22.627416997969522 Fetch Stick Max 91 22.627416997969522 Keep Quiet Bruno 3 1 Keep Quiet Cooper null 1 Keep Quiet Max 1 1 Wag Tail Bruno 65 14.81740718059524 Wag Tail Cooper 51 14.81740718059524 Wag Tail Max 87 14.81740718059524
In this case we partitioned by the Activity
column, and so we got the standard deviation within each activity.
Here it is with an ORDER BY
clause added to the OVER
clause:
SELECT
Activity,
DogName,
Score,
STDEVP(Score) OVER(PARTITION BY Activity ORDER BY Score) AS "STDEVP"
FROM Dogs;
Result:
Activity DogName Score STDEVP ----------- ------- ----- ------------------ Catch Cat null null null Fetch Stick Bruno 43 0 Fetch Stick Cooper 43 0 Fetch Stick Max 91 22.627416997969522 Keep Quiet Cooper null null Keep Quiet Max 1 0 Keep Quiet Bruno 3 1 Wag Tail Cooper 51 0 Wag Tail Bruno 65 7 Wag Tail Max 87 14.81740718059524
No DISTINCT
Clause with the OVER
Clause
We can’t use the DISTINCT
clause when using the OVER
clause.
Here’s what happens when we add the DISTINCT
clause to the previous example:
SELECT
Activity,
DogName,
Score,
STDEVP(DISTINCT Score) OVER(PARTITION BY Activity ORDER BY Score) AS "STDEVP"
FROM Dogs;
Result:
Msg 10759, Level 15, State 1, Line 5 Use of DISTINCT is not allowed with the OVER clause.
However, the ALL
clause is accepted.