Created
June 11, 2021 18:23
-
-
Save bartubozkurt/a405530bb1f2bf94dcf00387933f543c to your computer and use it in GitHub Desktop.
Finds cities with the same rating as Paris
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 rating = (SELECT rating | |
| FROM city | |
| WHERE name = 'Paris'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment