Created
June 11, 2021 19:23
-
-
Save bartubozkurt/0a451c74c1db9cd27413796d959f2f7f to your computer and use it in GitHub Desktop.
Displays DE cyclists who 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' | |
| INTERSECT | |
| 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