Premier League Club Stats (All Seasons)
Stats of 20 clubs from 1992/1993 to current season
@kaggle.raman77768_premier_league_club_stats_all_seasons
Stats of 20 clubs from 1992/1993 to current season
@kaggle.raman77768_premier_league_club_stats_all_seasons
CREATE TABLE clubs (
"club" VARCHAR,
"matches_played" BIGINT,
"wins" BIGINT,
"losses" BIGINT,
"goals" BIGINT,
"goals_conceded" BIGINT,
"clean_sheets" BIGINT,
"goals_per_match" DOUBLE,
"shots" BIGINT,
"shots_on_target" BIGINT,
"shooting_accuracy" VARCHAR,
"penalties_scored" BIGINT,
"big_chances_created" BIGINT,
"hit_woodwork" BIGINT,
"passes" BIGINT,
"passes_per_match" DOUBLE,
"pass_accuracy" VARCHAR,
"crosses" BIGINT,
"cross_accuracy" VARCHAR,
"goals_conceded_per_match" DOUBLE,
"saves" BIGINT,
"tackles" BIGINT,
"tackle_success" VARCHAR,
"blocked_shots" BIGINT,
"interceptions" BIGINT,
"clearances" BIGINT,
"headed_clearance" BIGINT,
"aerial_battles_duels_won" BIGINT,
"errors_leading_to_goal" BIGINT,
"own_goals" BIGINT,
"yellow_cards" BIGINT,
"red_cards" BIGINT,
"fouls" BIGINT,
"offsides" BIGINT
);
Anyone who has the link will be able to view this.