Skip to content

Instantly share code, notes, and snippets.

@TerraMaficco
Created June 8, 2020 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TerraMaficco/97a0326b70689da32581dc2c9dc3848b to your computer and use it in GitHub Desktop.
Save TerraMaficco/97a0326b70689da32581dc2c9dc3848b to your computer and use it in GitHub Desktop.
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';
-- Question 5
SELECT country, population FROM population_years
WHERE year = 2005
ORDER BY population
LIMIT 10;
-- Question 6
SELECT DISTINCT country, population FROM population_years
WHERE year = 2010
AND population > 100
ORDER BY population DESC;
-- Question 7
SELECT DISTINCT country FROM population_years
WHERE country LIKE '%Islands%';
-- Question 8
SELECT country, population, year FROM population_years
where country = 'Indonesia'
AND (year = 2000 OR year = 2010);
-- The Differenz between 2000 and 2010 in population in Indonesia is 28.29173 million people.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment