Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created July 11, 2020 17:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/1042f1f66c3116912e25a87d7bacaf31 to your computer and use it in GitHub Desktop.
Save codecademydev/1042f1f66c3116912e25a87d7bacaf31 to your computer and use it in GitHub Desktop.
Codecademy export
-- This is the first query:
SELECT DISTINCT year
FROM population_years;
-- Add your additional queries below:
-- Largest population size for Gabon:
SELECT MAX (population)
FROM population_years
WHERE country = 'Gabon';
-- The 10 lowest population countries in 2005:
SELECT country
FROM population_years
WHERE year = 2005
ORDER BY population ASC
LIMIT 10;
-- Distinct countries with population > 100 mil in 2010:
SELECT DISTINCT country
FROM population_years
WHERE population > 100
AND year = 2010;
-- Countries with 'Islands' in their name:
SELECT DISTINCT country
FROM population_years
WHERE country LIKE '%Islands';
-- Difference in population between 2000 and 2010 in Indonesia:
SELECT population
FROM population_years
WHERE country = 'Indonesia'
AND (year = 2000 OR year = 2010);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment