Skip to content

Instantly share code, notes, and snippets.

@TerraMaficco
TerraMaficco / solution.sql
Created June 8, 2020 09:14
World Populations Challenge Project (SQL) - My Solution
-- This is the first query:
SELECT DISTINCT year FROM population_years;
-- Add your additional queries below:
-- Question 4
SELECT MAX(population), year FROM population_years
WHERE country = 'Gabon';