Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 27, 2020 07:03
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 codecademydev/63b492465db6a93d5748df70923e7895 to your computer and use it in GitHub Desktop.
Save codecademydev/63b492465db6a93d5748df70923e7895 to your computer and use it in GitHub Desktop.
Codecademy export
SELECT * FROM population_years
LIMIT 100;
-- This is the first query:
SELECT DISTINCT year from population_years;
-- Add your additional queries below:
SELECT ROUND(MAX(population), 2) FROM population_years
WHERE country = 'Gabon';
SELECT country, ROUND(MIN(population), 2) AS population
FROM population_years
WHERE year = 2005
GROUP BY 1
ORDER BY 2
LIMIT 10;
SELECT DISTINCT country FROM population_years
WHERE population > 100 AND year = 2010;
SELECT COUNT(country) FROM population_years
WHERE country LIKE '%Islands%';
SELECT population, year FROM population_years
WHERE country = 'Indonesia' AND year LIKE '20%0';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment