Created
April 10, 2017 21:15
-
-
Save harsha547/6e8f9beb8c4c7bb6045ef3a4df9a0cef to your computer and use it in GitHub Desktop.
Players with Most Dot_Ball's in IPL ( 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 with Most Dot_Ball's in IPL ( 2008 - 2016 ) | |
SELECT C.Player_Name ,COUNT(*) As 'Dot_Ball' | |
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 = 0 | |
GROUP BY C.Player_Name | |
ORDER BY Dot_Ball DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Solution 👍