Created
June 11, 2021 18:26
-
-
Save bartubozkurt/2566904409ba7ea7f9e7c7f4c97bbd5b to your computer and use it in GitHub Desktop.
Finds cities in countries that have a population above 20M
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
| SELECT name FROM city | |
| WHERE country_id IN ( | |
| SELECT country_id | |
| FROM country | |
| WHERE population > 2000000; | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment