Created
June 11, 2021 19:28
-
-
Save bartubozkurt/0db246b6a949316d3ffc701d62217413 to your computer and use it in GitHub Desktop.
Displays DE cyclists unless they are also DE skaters at the same time
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 cycling | |
| WHERE country = 'DE' | |
| EXCEPT | |
| SELECT name | |
| FROM skating | |
| WHERE country = 'DE'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment