Created
June 13, 2021 09:26
-
-
Save bartubozkurt/91dfc9aeeb2506eabb031ad7b1a88aa5 to your computer and use it in GitHub Desktop.
lists the number of customers in each country. Only include countries with more than 5 customers
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 COUNT(CustomerID), Country | |
FROM Customers | |
GROUP BY Country | |
HAVING COUNT(CustomerID) > 5 ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment