Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save bartubozkurt/a405530bb1f2bf94dcf00387933f543c to your computer and use it in GitHub Desktop.
Finds cities with the same rating as Paris
SELECT name
FROM city
WHERE rating = (SELECT rating
FROM city
WHERE name = 'Paris');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment