Olympics Data Analysis with PostgreSQL
Writing Complex SQL Queries
Report -1 : Most decorated summer athletes
Requirements
This report should show the athletes that won at least three gold medals
- the athlete name
- the total number of gold medals
SELECT
a.name AS athlete_name,
SUM(gold) AS gold_medals
FROM summer_games AS s
JOIN athletes AS a
ON s.athlete_id = a.id
GROUP BY a.name
HAVING SUM(gold) >= 3
ORDER BY gold_medals DESC;
Output
Report -2 : Most decorated athlete per region
Requirements
This report should show the most decorated athlete per region.
- the region
- the athlete name
- the total number of gold medals
SELECT
region,
athlete_name,
total_golds
FROM
(SELECT
region,
name AS athlete_name,
SUM(COALESCE(gold, 0)) AS total_golds,
-- Assign a regional rank to each athlete
ROW_NUMBER() OVER (PARTITION BY region
ORDER BY SUM(COALESCE(gold, 0)) DESC) AS row_num
FROM summer_games AS s
INNER JOIN athletes AS a
ON s.athlete_id = a.id
INNER JOIN countries AS c
ON s.country_id = c.id
GROUP BY region, athlete_name) AS subquery
-- Filter for only the top athlete per region
WHERE row_num = 1
AND total_golds > 0
ORDER BY total_golds DESC;
Output
Report-3: Athletes Representing Nobel-Prize Winning Countries
Requirements
This report should show 10 events with the most athletes who are from Nobel prize winner countries.
- the Olympic event (both summer and winter events should be included)
- the gender of athletes in the event
- the number of athletes
SELECT
event,
CASE WHEN event LIKE '%Women%' THEN 'female'
ELSE 'male' END AS gender,
COUNT(DISTINCT athlete_id) AS athletes
FROM summer_games
-- Only include countries that won a nobel prize
WHERE country_id IN
(SELECT country_id
FROM country_stats
WHERE nobel_prize_winners > 0)
GROUP BY event
UNION ALL
SELECT
event,
CASE WHEN event LIKE '%Women%' THEN 'female'
ELSE 'male' END AS gender,
COUNT(DISTINCT athlete_id) AS athletes
FROM winter_games
WHERE country_id IN
(SELECT country_id
FROM country_stats
WHERE nobel_prize_winners > 0)
GROUP BY event
ORDER BY athletes DESC
LIMIT 10;
Output
Report- 4: Countries with high medal rates
Requirements
This report should show the top 10 countries by the number of medals per million population.
- the country code (3 letter country abbreviation)
- the population of the country (in millions)
- the total number of medals
- the number of medals per million population
Output
Report-5: Average tallest athletes and % GDP by region
Requirements
This report should show the average tallest athlete and % of the World GDP by region.
- the region
- the average height of the tallest athlete from each country within the region
- the percentage of the World GDP attributed to the region
- only winter games should be included
SELECT
region,
ROUND(AVG(height),2) AS avg_tallest,
-- Calculate region's percent of world gdp
ROUND(CAST((SUM(gdp) * 100 / SUM(SUM(gdp)) OVER()) AS numeric),2) AS perc_world_gdp
FROM countries AS c
INNER JOIN
(SELECT
country_id,
height,
ROW_NUMBER() OVER (PARTITION BY country_id ORDER BY height DESC) AS row_num
FROM winter_games AS w
INNER JOIN athletes AS a
ON w.athlete_id = a.id
GROUP BY country_id, height
ORDER BY country_id, height DESC) AS subquery
ON c.id = subquery.country_id
INNER JOIN country_stats AS cs
ON c.id = cs.country_id
-- Only include the tallest height for each country
WHERE row_num = 1
GROUP BY region
ORDER BY avg_tallest DESC;
Output