Created
December 17, 2016 18:42
-
-
Save harsha547/ce6ef8d431db21b31ef24ee0c9065e08 to your computer and use it in GitHub Desktop.
-- Number of Players participated in Indian Player League by respective Countries. At least those who played a single match.
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
-- Number of Players participated in Indian Player League by respective Countries. | |
-- Atleast those who played a single match. | |
SELECT Country.Country_Name , | |
Count(*) As "Players" | |
FROM | |
Player | |
INNER JOIN | |
Country | |
ON | |
Player.Country_Name = Country.Country_Id | |
GROUP BY Country.Country_Name | |
ORDER BY Players DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution 👍