Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created October 19, 2020 07:39
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/1834d0d4f506418b3813b83d4c088534 to your computer and use it in GitHub Desktop.
Save codecademydev/1834d0d4f506418b3813b83d4c088534 to your computer and use it in GitHub Desktop.
Codecademy export
-- How many entries in the database are from Africa
SELECT COUNT(continent) FROM countries WHERE continent like "Africa";
-- What was the total population of Oceania in 2005?
SELECT sum(population) FROM countries inner join population_years on countries.id =population_years.country_id WHERE countries.continent like "Oceania" and population_years.year =2005;
-- What is the average population of countries in South America in 2003?
SELECT avg(population) FROM countries inner join population_years on countries.id =population_years.country_id WHERE countries.continent like "South America" and population_years.year = 2003;
-- What country had the smallest population in 2007?
SELECT name, min (population)FROM countries inner join population_years on countries.id =population_years.country_id WHERE population_years.year = 2003;
-- What is the average population of Poland during the time period covered by this dataset?
SELECT avg(population) FROM countries inner join population_years on countries.id =population_years.country_id WHERE name like "Poland";
-- How many countries have the word "The" in their name?
SELECT count(*) from countries where name like "%The%";
-- What was the total population of each continent in 2010?
SELECT continent,sum(population) FROM countries inner join population_years on countries.id =population_years.country_id WHERE year = 2010 group by continent ORDER by sum(population) desc;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment