STDDEV_POP() OVER ...
All functions > WINDOW FUNCTION > STDDEV_POP() OVER ...
Returns the population standard deviation over the window frame.
Syntax
Diagram(
Sequence(
Terminal("STDDEV_POP"),
Terminal("("),NonTerminal('expr'),Terminal(")"),
Terminal("OVER"),
Terminal("("),
NonTerminal("over_clause"),
Terminal(")"),
)
)| Parameter | Type | Required | Description |
|---|---|---|---|
expr | EXPRESSION | Yes | Numeric expression to compute standard deviation of |
over_clause | OVER CLAUSE | Yes | OVER (PARTITION BY ... ORDER BY ... [FRAME ...]) |
Notes
- Computes population standard deviation (divides by N) over a window of rows
- NULL values are ignored in the calculation