Created
May 11, 2020 23:00
-
-
Save mallory-jpg/4e7a44a1eaa45afcda8065993ce2f5df to your computer and use it in GitHub Desktop.
Codeacademy Export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- This is the first query: | |
| SELECT DISTINCT year from population_years; | |
| -- Add your additional queries below: | |
| SELECT MAX(population) | |
| FROM population_years | |
| WHERE country = 'Gabon'; | |
| SELECT country, population | |
| FROM population_years | |
| WHERE year = 2005 | |
| ORDER BY 2 ASC; | |
| SELECT DISTINCT country | |
| FROM population_years | |
| WHERE population > 100 AND year = 2010; | |
| SELECT DISTINCT country | |
| FROM population_years | |
| WHERE country LIKE '%islands%'; | |
| SELECT country, population, year | |
| FROM population_years | |
| WHERE year = 2000 AND country = 'Indonesia' | |
| OR year = 2010 AND country = 'Indonesia'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment