MLB Hitting And Pitching Stats Through All Time
Uncovering History of Baseball: A Comprehensive Dataset of Hittimg and Pitching.
@kaggle.joyshil0599_mlb_hitting_and_pitching_stats_through_the_years
Uncovering History of Baseball: A Comprehensive Dataset of Hittimg and Pitching.
@kaggle.joyshil0599_mlb_hitting_and_pitching_stats_through_the_years
CREATE TABLE baseball_hitting (
"player_name" VARCHAR,
"position" VARCHAR,
"games" DOUBLE,
"at_bat" DOUBLE,
"runs" DOUBLE,
"hits" DOUBLE,
"double_2b" DOUBLE,
"third_baseman" DOUBLE,
"home_run" DOUBLE,
"run_batted_in" DOUBLE,
"a_walk" DOUBLE,
"strikeouts" VARCHAR,
"stolen_base" DOUBLE,
"caught_stealing" VARCHAR,
"avg" DOUBLE,
"on_base_percentage" DOUBLE,
"slugging_percentage" DOUBLE,
"on_base_plus_slugging" DOUBLE
);
CREATE TABLE baseball_pitcher (
"player_name" VARCHAR,
"position" VARCHAR,
"win" DOUBLE,
"loss" DOUBLE,
"earned_run_average" DOUBLE,
"games_played" DOUBLE,
"games_started" DOUBLE,
"complete_game" DOUBLE,
"shutout" DOUBLE,
"save" DOUBLE,
"save_opportunity" VARCHAR,
"innings_pitched" DOUBLE,
"hit" DOUBLE,
"run" DOUBLE,
"earned_run" DOUBLE,
"home_run" DOUBLE,
"n__hit_batsmen" DOUBLE,
"base_on_balls" DOUBLE,
"strikeouts" DOUBLE,
"whip" DOUBLE,
"avg" VARCHAR
);
Anyone who has the link will be able to view this.