Skip to content

Instantly share code, notes, and snippets.

@bartubozkurt
Last active June 11, 2021 19:12
Show Gist options
  • Select an option

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

Select an option

Save bartubozkurt/e3a84d2d7636d7259f744a192d95f27c to your computer and use it in GitHub Desktop.
Displays Deutsch cyclists together with Deutsch skaters
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