Created
June 11, 2021 17:38
-
-
Save bartubozkurt/e9b7fbf3171085fbe5728080c080baea to your computer and use it in GitHub Desktop.
Fetch names of cities that are neither Berlin nor Madrid
This file contains 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 name != 'Berlin' AND name != 'Madrid'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment