-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path9-_window_functions.sql
56 lines (45 loc) · 1.91 KB
/
9-_window_functions.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
-- 1. Show the lastName, party and votes for the constituency 'S14000024' in 2017.
SELECT lastName, party, votes
FROM ge
WHERE constituency = 'S14000024' AND yr = 2017
ORDER BY votes DESC
-- 2. You can use the RANK function to see the order of the candidates.
-- If you RANK using (ORDER BY votes DESC) then the candidate with the most votes has rank 1.
-- Show the party and RANK for constituency S14000024 in 2017. List the output by party
SELECT party, votes, RANK() OVER (ORDER BY votes DESC) AS posn
FROM ge
WHERE constituency = 'S14000024' AND yr = 2017
ORDER BY party;
-- 3. Use PARTITION to show the ranking of each party in S14000021 in each year.
-- Include yr, party, votes and ranking (the party with the most votes is 1).
SELECT yr, party, votes, RANK() OVER (PARTITION BY yr ORDER BY votes DESC) AS posn
FROM ge
WHERE constituency = 'S14000021'
ORDER BY party, yr;
-- 4. Use PARTITION BY constituency to show the ranking of each party in Edinburgh in 2017.
-- Order your results so the winners are shown first, then ordered by constituency.
SELECT constituency, party, votes, RANK() OVER (PARTITION BY constituency ORDER BY votes DESC) AS posn
FROM ge
WHERE constituency BETWEEN 'S14000021' AND 'S14000026'
AND yr = 2017
ORDER BY posn, constituency ASC;
-- 5. Show the parties that won for each Edinburgh constituency in 2017.
SELECT constituency, party
FROM (
SELECT constituency, party, votes, RANK() OVER (PARTITION BY constituency order by votes desc) AS rank
FROM ge
WHERE constituency BETWEEN 'S14000021' AND 'S14000026'
AND yr = 2017
ORDER BY constituency, votes DESC
) TAB
WHERE rank = 1;
-- 6. Show how many seats for each party in Scotland in 2017.
SELECT party, COUNT(constituency)
FROM (
SELECT constituency, party, RANK() OVER (PARTITION BY constituency ORDER BY votes DESC) AS posn
FROM ge
WHERE constituency LIKE 'S%'
AND yr = 2017
) TAB
WHERE posn = 1
GROUP BY party;