Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save bartubozkurt/fde1239616a5b2adc90e0fb064210df2 to your computer and use it in GitHub Desktop.
Find out the average rating for cities in respective countries if the average is above 3.0
SELECT country_id , AVG(rating)
FROM city
GROUP BY country_id
HAVING AVG(rating) > 3.0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment