Try Out The Interactive: Window Functions Partition by Order by Aggregate Functions vs. Window Functions
Try Out The Interactive: Window Functions Partition by Order by Aggregate Functions vs. Window Functions
Default Partition: with no PARTITION BY clause, the entire Default ORDER BY: with no ORDER BY clause, the order of
Syntax result set is the partition. rows within each partition is arbitrary.
1. FROM, JOIN 7. SELECT As of 2020, GROUPS is only supported in PostgreSQL 11 and up.
2. WHERE 8. DISTINCT
3. GROUP BY 9. UNION/INTERSECT/EXCEPT
4. aggregate functions 10. ORDER BY Abbreviations Default Window Frame
5. HAVING 11. OFFSET
6. window functions 12. LIMIT/FETCH/TOP Abbreviation Meaning If ORDER BY is specified, then the frame is
UNBOUNDED PRECEDING BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW RANGE BETWEEN UNBOUNDED PRECEDING AND
n PRECEDING BETWEEN n PRECEDING AND CURRENT ROW CURRENT ROW.
You can use window functions in SELECT and ORDER BY. However, you can’t put window functions anywhere in the FROM, CURRENT ROW BETWEEN CURRENT ROW AND CURRENT ROW Without ORDER BY, the frame specification is
WHERE, GROUP BY, or HAVING clauses. n FOLLOWING BETWEEN AND CURRENT ROW AND n FOLLOWING ROWS BETWEEN UNBOUNDED PRECEDING AND
UNBOUNDED FOLLOWING BETWEEN CURRENT ROW AND UNBOUNDED FOLLOWING UNBOUNDED FOLLOWING.
Distribution Functions ORDER BY and Window Frame: rank() and dense_rank() require ORDER BY, but ORDER BY and Window Frame: Distribution functions require ORDER BY. They do not accept window frame
∙ percent_rank() row_number() does not require ORDER BY. Ranking functions do not accept window definition (ROWS, RANGE, GROUPS).
frame definition (ROWS, RANGE, GROUPS).
∙ cume_dist()
Analytic Functions
∙ lead()
Analytic Functions ∙
first_value(expr) − the value for the first row within the window frame
∙
lead(expr, offset, default) − the value for the row offset rows after the current; offset and ∙
last_value(expr) − the value for the last row within the window frame
∙ lag()
default are optional; default values: offset = 1, default = NULL
∙
ntile()
∙
lag(expr, offset, default) − the value for the row offset rows before the current; offset and first_value(sold) OVER last_value(sold) OVER
∙ first_value()
default are optional; default values: offset = 1, default = NULL (PARTITION BY city ORDER BY month) (PARTITION BY city ORDER BY month
∙ last_value() RANGE BETWEEN UNBOUNDED PRECEDING
lag(sold) OVER(ORDER BY month) lead(sold) OVER(ORDER BY month) city month sold first_value AND UNBOUNDED FOLLOWING)
∙ nth_value() Paris 1 500 500
month sold month sold city month sold last_value
order by month
order by month
Paris 2 300 500
1 500 NULL 1 500 300 Paris 3 400 500 Paris 1 500 400
2 300 500 2 300 400 Rome 2 200 200 Paris 2 300 400
Paris 3 400 400
Aggregate Functions 3 400 300 3 400 100 Rome 3 300 200
Rome 2 200 500
4 100 400 4 100 500 Rome 4 500 200
5 500 100 5 500 NULL Rome 3 300 500
∙
avg(expr) − average value for Rome 4 500 500
rows within the window frame
lag(sold, 2, 0) OVER(ORDER BY month) lead(sold, 2, 0) OVER(ORDER BY month)
Note: You usually want to use RANGE BETWEEN
month sold month sold
order by month
order by month
∙
count(expr) − count of values UNBOUNDED PRECEDING AND UNBOUNDED
offset=2
offset=2
4 100 300 4 100 0 PRECEDING, last_value() returns the value for
∙
m ax(expr) − maximum value
5 500 400 5 500 0 the current row.
within the window frame
∙
ntile(n) − divide rows within a partition as equally as possible into n groups, and assign each ∙
nth_value(expr, n) − the value for the n-th row within the window frame; n must be an integer
∙
min(expr) − minimum value
row its group number.
within the window frame nth_value(sold, 2) OVER
ntile(3) (PARTITION BY city ORDER BY month)
∙
sum(expr) − sum of values within city sold city month sold nth_value
the window frame Rome 100 1 Paris 1 500 300
Paris 100 1 1 1 Paris 2 300 300
London 200 1 Paris 3 400 300
Moscow 200 2 Rome 2 200 300
ORDER BY and Window Frame: Berlin 200 2 2 2
ORDER BY and Window Frame: ntile(), ORDER BY and Window Frame: first_value(),
Rome 3 300 300
Aggregate functions do not require an Madrid 300 2 lead(), and lag() require an ORDER BY. Rome 4 500 300
last_value(), and nth_value() do not
ORDER BY. They accept window frame Oslo 300 3 They do not accept window frame definition Rome 5 300 300 require an ORDER BY. They accept window frame
3 3
definition (ROWS, RANGE, GROUPS). Dublin 300 3 (ROWS, RANGE, GROUPS). London 1 100 NULL definition (ROWS, RANGE, GROUPS).