Created
December 18, 2016 21:20
-
-
Save harsha547/63f07ae1a7d694bd20b55cc765e13d9f to your computer and use it in GitHub Desktop.
Players who has taken most catches 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
-- Players who has taken most catches in | |
-- Indian Premier League ( 2008 - 2016 ) | |
SELECT TOP 10 Player.Player_Name , | |
COUNT(*) AS 'Catches' | |
FROM Wicket_Taken | |
INNER JOIN Out_Type | |
ON Wicket_Taken.Kind_Out = Out_Type.Out_Id | |
INNER JOIN Player | |
ON Player.Player_Id = Wicket_Taken.Fielders | |
WHERE Out_Type.Out_Name = 'caught' | |
GROUP BY Player.Player_Name | |
ORDER BY Catches DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Result 👍