Baselight

Global Football Goalscorers Dataset

Player-level scoring records including goals, teams, and match events.

@kaggle.ahmadrazakashif_global_football_goalscorers_dataset

Loading...
Loading...

About this Dataset

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.

Tables

Former Names

@kaggle.ahmadrazakashif_global_football_goalscorers_dataset.former_names
  • 5.19 kB
  • 34 rows
  • 4 columns
Loading...
CREATE TABLE former_names (
  "current" VARCHAR,
  "former" VARCHAR,
  "start_date" TIMESTAMP,
  "end_date" TIMESTAMP
);

Goalscorers

@kaggle.ahmadrazakashif_global_football_goalscorers_dataset.goalscorers
  • 510.19 kB
  • 44,447 rows
  • 8 columns
Loading...
CREATE TABLE goalscorers (
  "date" TIMESTAMP,
  "home_team" VARCHAR,
  "away_team" VARCHAR,
  "team" VARCHAR,
  "scorer" VARCHAR,
  "minute" DOUBLE,
  "own_goal" BOOLEAN,
  "penalty" BOOLEAN
);

Results

@kaggle.ahmadrazakashif_global_football_goalscorers_dataset.results
  • 558.6 kB
  • 48,673 rows
  • 9 columns
Loading...
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
);

Shootouts

@kaggle.ahmadrazakashif_global_football_goalscorers_dataset.shootouts
  • 18.64 kB
  • 653 rows
  • 5 columns
Loading...
CREATE TABLE shootouts (
  "date" TIMESTAMP,
  "home_team" VARCHAR,
  "away_team" VARCHAR,
  "winner" VARCHAR,
  "first_shooter" VARCHAR
);

Share link

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