Europe's Top 5 League Player Analysis
Player Career Analysis
@kaggle.collinsemensah_europes_top_5_league_player_analysis
Player Career Analysis
@kaggle.collinsemensah_europes_top_5_league_player_analysis
110 Player details From Europe's Top 5 Leagues: Premier League, La Liga, Seria A, Ligue 1, and Bundesliga. There are 5 Correlated Excel Data files that you can use to create a comprehensive analysis.
CREATE TABLE career_stats (
"stats_id" BIGINT,
"player_id" BIGINT,
"games" VARCHAR,
"goals" VARCHAR,
"assists" VARCHAR,
"yellow_cards" VARCHAR,
"red_cards" VARCHAR
);CREATE TABLE geography (
"nation_id" BIGINT,
"country" VARCHAR,
"continent_id" BIGINT
);CREATE TABLE leagues (
"league_id" BIGINT,
"league_name" VARCHAR
);CREATE TABLE player (
"player_id" BIGINT,
"full_name" VARCHAR,
"birthdate" TIMESTAMP,
"nationality" VARCHAR,
"nation_id" BIGINT,
"position" VARCHAR,
"jersey_number" BIGINT,
"team_id" BIGINT,
"year_joined_club" BIGINT,
"debut_career" BIGINT,
"n__market_value_in_millions" BIGINT -- Market Value In Millions
);CREATE TABLE team_data (
"team_id" BIGINT,
"team_name" VARCHAR,
"founded_year" BIGINT,
"stadium_name" VARCHAR,
"city" VARCHAR,
"country" VARCHAR,
"league_id" BIGINT
);Anyone who has the link will be able to view this.