Created
December 18, 2016 20:22
-
-
Save harsha547/1d7cf3f07ddf2506f28c0728194fd588 to your computer and use it in GitHub Desktop.
Top 12 Players who have most man of the matches in Indian Premier League ( 2008 - 2016 )
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
-- Top 12 players who have most man of the matches in | |
-- Indian Premier League ( 2008 - 2016 ) | |
SELECT TOP 12 Player.Player_Name , | |
COUNT(*) As 'Man_Of_The_Matches' | |
FROM | |
Match | |
INNER JOIN | |
Player | |
ON | |
Match.Man_of_the_Match = Player.Player_Id | |
GROUP BY Player.Player_Name | |
ORDER BY Man_Of_The_Matches DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Result 👍