harsha547
4/10/2017 - 8:54 PM

Players with most fours overall ( 2008 - 2016 )

Players with most fours overall ( 2008 - 2016 )

-- Players with most fours overall ( 2008 - 2016 )

SELECT C.Player_Name ,COUNT(*) As ' Sixes_Scored'
	FROM Ball_by_Ball A
		INNER JOIN Batsman_Scored 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.Striker = C.Player_Id
		INNER JOIN Match D
			ON A.Match_Id = D.Match_Id
		INNER JOIN Venue E
			ON D.Venue_Id = E.Venue_Id
		WHERE B.Runs_Scored = 4
			GROUP BY C.Player_Name
			ORDER BY [ Sixes_Scored] DESC