harsha547
4/16/2017 - 3:11 PM

Bowlers with most Five wicket hauls in IPL (2008-2016)

Bowlers with most Five wicket hauls in IPL (2008-2016)

-- Bowlers with most Five wicket hauls in IPL (2008-2016)
WITH CTE(Match_Id, Player_Name , Wickets_taken)
As
(
	SELECT A.Match_Id,C.Player_Name , COUNT(*) As 'Wickets_Taken'
			FROM Ball_by_Ball A
				INNER JOIN Wicket_Taken B
					ON CONCAT(A.Match_Id,A.Over_Id,A.Ball_Id,A.Innings_No)
					= CONCAT(B.Match_Id,B.Over_Id ,B.Ball_Id ,B.Innings_No)
				INNER JOIN Player C
					ON A.Bowler = C.Player_Id
			WHERE B.Kind_Out NOT IN (3,5,9)
			GROUP BY A.Match_Id,C.Player_Name
			HAVING COUNT(*) >=5

)

SELECT Player_Name , COUNT(*) As 'Five_wicket_Hauls' 
		FROM
			CTE
		GROUP BY Player_Name
		ORDER BY Five_wicket_Hauls DESC;