Last active
June 11, 2021 19:12
-
-
Save bartubozkurt/e3a84d2d7636d7259f744a192d95f27c to your computer and use it in GitHub Desktop.
Displays Deutsch cyclists together with Deutsch skaters
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' | |
| UNION | |
| 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