Cricket - Test Statistics - Batting
List of the Best ever Batsman to play the Test Format
@kaggle.akulvaishnavi_cricket_test_statistics_batting
List of the Best ever Batsman to play the Test Format
@kaggle.akulvaishnavi_cricket_test_statistics_batting
This dataset contains comprehensive information on the top run scorers in Test cricket. Each entry includes the player's name, country, total runs scored, number of matches and innings played, batting average, highest score, number of centuries, half-centuries and number of ducks (zeroes) made. This dataset is a valuable resource for cricket enthusiasts, analysts, and data scientists interested in exploring player performances and trends in Test cricket.
CREATE TABLE test_stats (
"player_team" VARCHAR -- Player (Team),
"span" VARCHAR,
"matches" BIGINT,
"innings" BIGINT,
"not_outs" BIGINT,
"runs" BIGINT,
"high_score" VARCHAR,
"average" DOUBLE,
"n_100s" BIGINT -- 100s,
"n_50s" BIGINT -- 50s,
"n_0s" BIGINT -- 0s
);
Anyone who has the link will be able to view this.