Baselight

A Comprehensive Database On The FIFA World Cup

Data on teams, players, managers, refs, matches, goals, cards, subs, and more!

@kaggle.joshfjelstul_world_cup_database

Matches
@kaggle.joshfjelstul_world_cup_database.matches

  • 65.84 KB
  • 900 rows
  • 37 columns
key_id

Key Id

tournament_id

Tournament Id

tournament_name

Tournament Name

match_id

Match Id

match_name

Match Name

stage_name

Stage Name

group_name

Group Name

group_stage

Group Stage

knockout_stage

Knockout Stage

replayed

Replayed

replay

Replay

match_date

Match Date

match_time

Match Time

stadium_id

Stadium Id

stadium_name

Stadium Name

city_name

City Name

country_name

Country Name

home_team_id

Home Team Id

home_team_name

Home Team Name

home_team_code

Home Team Code

away_team_id

Away Team Id

away_team_name

Away Team Name

away_team_code

Away Team Code

score

Score

home_team_score

Home Team Score

away_team_score

Away Team Score

home_team_score_margin

Home Team Score Margin

away_team_score_margin

Away Team Score Margin

extra_time

Extra Time

penalty_shootout

Penalty Shootout

score_penalties

Score Penalties

home_team_score_penalties

Home Team Score Penalties

away_team_score_penalties

Away Team Score Penalties

result

Result

home_team_win

Home Team Win

away_team_win

Away Team Win

draw

Draw

1WC-19301930 FIFA World CupM-1930-01France v Mexicogroup stageGroup 11Sun Jul 13 1930 00:00:00 GMT+0000 (Coordinated Universal Time)15:00S-185Estadio PocitosMontevideoUruguayT-28FranceFRAT-44MexicoMEX4–1413-30-0home team win1
2WC-19301930 FIFA World CupM-1930-02United States v Belgiumgroup stageGroup 41Sun Jul 13 1930 00:00:00 GMT+0000 (Coordinated Universal Time)15:00S-184Estadio Gran Parque CentralMontevideoUruguayT-79United StatesUSAT-06BelgiumBEL3–033-30-0home team win1
3WC-19301930 FIFA World CupM-1930-03Yugoslavia v Brazilgroup stageGroup 21Mon Jul 14 1930 00:00:00 GMT+0000 (Coordinated Universal Time)12:45S-184Estadio Gran Parque CentralMontevideoUruguayT-83YugoslaviaYUGT-09BrazilBRA2–1211-10-0home team win1
4WC-19301930 FIFA World CupM-1930-04Romania v Perugroup stageGroup 31Mon Jul 14 1930 00:00:00 GMT+0000 (Coordinated Universal Time)14:50S-185Estadio PocitosMontevideoUruguayT-58RomaniaROUT-54PeruPER3–1312-20-0home team win1
5WC-19301930 FIFA World CupM-1930-05Argentina v Francegroup stageGroup 11Tue Jul 15 1930 00:00:00 GMT+0000 (Coordinated Universal Time)16:00S-184Estadio Gran Parque CentralMontevideoUruguayT-03ArgentinaARGT-28FranceFRA1–011-10-0home team win1
6WC-19301930 FIFA World CupM-1930-06Chile v Mexicogroup stageGroup 11Wed Jul 16 1930 00:00:00 GMT+0000 (Coordinated Universal Time)14:45S-184Estadio Gran Parque CentralMontevideoUruguayT-13ChileCHLT-44MexicoMEX3–033-30-0home team win1
7WC-19301930 FIFA World CupM-1930-07Yugoslavia v Boliviagroup stageGroup 21Thu Jul 17 1930 00:00:00 GMT+0000 (Coordinated Universal Time)12:45S-184Estadio Gran Parque CentralMontevideoUruguayT-83YugoslaviaYUGT-07BoliviaBOL4–044-40-0home team win1
8WC-19301930 FIFA World CupM-1930-08United States v Paraguaygroup stageGroup 41Thu Jul 17 1930 00:00:00 GMT+0000 (Coordinated Universal Time)14:45S-184Estadio Gran Parque CentralMontevideoUruguayT-79United StatesUSAT-53ParaguayPRY3–033-30-0home team win1
9WC-19301930 FIFA World CupM-1930-09Uruguay v Perugroup stageGroup 31Fri Jul 18 1930 00:00:00 GMT+0000 (Coordinated Universal Time)14:30S-183Estadio CentenarioMontevideoUruguayT-80UruguayURYT-54PeruPER1–011-10-0home team win1
10WC-19301930 FIFA World CupM-1930-10Chile v Francegroup stageGroup 11Sat Jul 19 1930 00:00:00 GMT+0000 (Coordinated Universal Time)12:50S-183Estadio CentenarioMontevideoUruguayT-13ChileCHLT-28FranceFRA1–011-10-0home team win1

CREATE TABLE matches (
  "key_id" BIGINT,
  "tournament_id" VARCHAR,
  "tournament_name" VARCHAR,
  "match_id" VARCHAR,
  "match_name" VARCHAR,
  "stage_name" VARCHAR,
  "group_name" VARCHAR,
  "group_stage" BIGINT,
  "knockout_stage" BIGINT,
  "replayed" BIGINT,
  "replay" BIGINT,
  "match_date" TIMESTAMP,
  "match_time" VARCHAR,
  "stadium_id" VARCHAR,
  "stadium_name" VARCHAR,
  "city_name" VARCHAR,
  "country_name" VARCHAR,
  "home_team_id" VARCHAR,
  "home_team_name" VARCHAR,
  "home_team_code" VARCHAR,
  "away_team_id" VARCHAR,
  "away_team_name" VARCHAR,
  "away_team_code" VARCHAR,
  "score" VARCHAR,
  "home_team_score" BIGINT,
  "away_team_score" BIGINT,
  "home_team_score_margin" BIGINT,
  "away_team_score_margin" BIGINT,
  "extra_time" BIGINT,
  "penalty_shootout" BIGINT,
  "score_penalties" VARCHAR,
  "home_team_score_penalties" BIGINT,
  "away_team_score_penalties" BIGINT,
  "result" VARCHAR,
  "home_team_win" BIGINT,
  "away_team_win" BIGINT,
  "draw" BIGINT
);

Share link

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