UCL Statistics (1993-2020)
UEFA Champion league statistics
@kaggle.bakar31_ucl_statistics
UEFA Champion league statistics
@kaggle.bakar31_ucl_statistics
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.
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
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
);
Anyone who has the link will be able to view this.