Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created June 11, 2021 17:38
Show Gist options
  • Save bartubozkurt/e9b7fbf3171085fbe5728080c080baea to your computer and use it in GitHub Desktop.
Save bartubozkurt/e9b7fbf3171085fbe5728080c080baea to your computer and use it in GitHub Desktop.
Fetch names of cities that are neither Berlin nor Madrid
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