Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created March 22, 2020 17:34
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/86be6bdf4f8729a91813143d345dcacf to your computer and use it in GitHub Desktop.
Save codecademydev/86be6bdf4f8729a91813143d345dcacf 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:
SELECT *
FROM POPULATION_YEARS
WHERE COUNTRY = 'Gabon'
ORDER BY POPULATION DESC
LIMIT 1;
SELECT *
FROM POPULATION_YEARS
WHERE YEAR = 2010
ORDER BY POPULATION ASC
LIMIT 10;
SELECT DISTINCT COUNTRY
FROM POPULATION_YEARS
WHERE YEAR = 2010 AND POPULATION > 100;
SELECT DISTINCT COUNTRY
FROM POPULATION_YEARS
WHERE COUNTRY LIKE '% ISLANDS%';
SELECT POPULATION, YEAR
FROM POPULATION_YEARS
WHERE COUNTRY = 'Indonesia' AND YEAR IN (2000,2010);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment