Baselight

UCL Statistics (1993-2020)

UEFA Champion league statistics

@kaggle.bakar31_ucl_statistics

Loading...
Loading...

About this Dataset

UCL Statistics (1993-2020)

Context

This dataset contains UCL statistics for different teams from 1992-2020. The champions column represent weather the team was champion or not in that year. 1 = champion, 0 = not champion.

Content

year: 2nd year of a season. example: 1993 represent 1992-1993 season.
team_name: Team Name
match_played: Total match played in a season
wins: Total wins in a season
draws: Total draws in a season
losts: Total losts in a season
goals_scored: Number of goals the team scored in a season
goals_conceded: Number of goals conceded in a season
gd: goal difference(goals_scored - goals_conceded)
group_points: Points obtained in the group stage in a season.
champions: Weather a team was champion or not in a season. 1 = champion, 0 = not champion

Tables

Ucl Stats

@kaggle.bakar31_ucl_statistics.ucl_stats
  • 14.21 KB
  • 714 rows
  • 11 columns
Loading...

CREATE TABLE ucl_stats (
  "year" BIGINT,
  "team" VARCHAR,
  "match_played" BIGINT,
  "wins" BIGINT,
  "draws" BIGINT,
  "losts" BIGINT,
  "goals_scored" BIGINT,
  "goals_conceded" BIGINT,
  "gd" BIGINT,
  "group_point" BIGINT,
  "champions" BIGINT
);

Share link

Anyone who has the link will be able to view this.