Global Football Goalscorers Dataset
Player-level scoring records including goals, teams, and match events.
@kaggle.ahmadrazakashif_global_football_goalscorers_dataset
Player-level scoring records including goals, teams, and match events.
@kaggle.ahmadrazakashif_global_football_goalscorers_dataset
This dataset provides a all-inclusive historical record of international football matches played by national teams across different competitions and time periods. It is composed of four interconnected CSV files that collectively capture match outcomes, goals scored, penalty shootouts, and changes in national team names. The dataset is widely used for football analytics, predictive modeling, sports research, and performance judgment of national teams over time.
CREATE TABLE former_names (
"current" VARCHAR,
"former" VARCHAR,
"start_date" TIMESTAMP,
"end_date" TIMESTAMP
);CREATE TABLE goalscorers (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"team" VARCHAR,
"scorer" VARCHAR,
"minute" DOUBLE,
"own_goal" BOOLEAN,
"penalty" BOOLEAN
);CREATE TABLE results (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"home_score" BIGINT,
"away_score" BIGINT,
"tournament" VARCHAR,
"city" VARCHAR,
"country" VARCHAR,
"neutral" BOOLEAN
);CREATE TABLE shootouts (
"date" TIMESTAMP,
"home_team" VARCHAR,
"away_team" VARCHAR,
"winner" VARCHAR,
"first_shooter" VARCHAR
);Anyone who has the link will be able to view this.