Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created April 5, 2020 19:59
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/b0c1fbd88a59caea66d91df4cf98b89c to your computer and use it in GitHub Desktop.
Save codecademydev/b0c1fbd88a59caea66d91df4cf98b89c to your computer and use it in GitHub Desktop.
Codecademy export
select countries.continent, population_years.population from countries
join population_years
on countries.id = population_years.country_id
where year = 2010
group by continent;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment