Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Created June 11, 2021 19:23
Show Gist options
  • Select an option

  • Save bartubozkurt/0a451c74c1db9cd27413796d959f2f7f to your computer and use it in GitHub Desktop.

Select an option

Save bartubozkurt/0a451c74c1db9cd27413796d959f2f7f to your computer and use it in GitHub Desktop.
Displays DE cyclists who are also DE skaters at the same time
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