Cricket - ODI Statistics - Batting
List of the Best ever Batsman to play the One Day International (ODI) Format
@kaggle.akulvaishnavi_cricket_odi_statistics_batting
List of the Best ever Batsman to play the One Day International (ODI) Format
@kaggle.akulvaishnavi_cricket_odi_statistics_batting
This dataset contains comprehensive information on the top run scorers in One Day International (ODI) cricket. Each entry includes the player's name, country, total runs scored, number of matches and innings played, batting average, strike rate, highest score, number of centuries, half-centuries, zeros and total balls faced. This dataset is a valuable resource for cricket enthusiasts, analysts, and data scientists interested in exploring player performances and trends in ODI cricket.
CREATE TABLE odi_stats (
"player_teams_played" VARCHAR -- Player (Teams Played),
"span" VARCHAR,
"matches" BIGINT,
"innings" BIGINT,
"not_outs" BIGINT,
"runs" BIGINT,
"high_score_not_out" VARCHAR -- High Score (* \u003d Not Out),
"average" DOUBLE,
"balls_faced" BIGINT,
"strike_rate" DOUBLE,
"n_100s" BIGINT -- 100s,
"n_50s" BIGINT -- 50s,
"n_0s" BIGINT -- 0s
);
Anyone who has the link will be able to view this.