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

Player Appearances
@kaggle.joshfjelstul_world_cup_database.player_appearances

  • 334.48 KB
  • 18623 rows
  • 22 columns
key_id

Key Id

tournament_id

Tournament Id

tournament_name

Tournament Name

match_id

Match Id

match_name

Match Name

match_date

Match Date

stage_name

Stage Name

group_name

Group Name

team_id

Team Id

team_name

Team Name

team_code

Team Code

home_team

Home Team

away_team

Away Team

player_id

Player Id

family_name

Family Name

given_name

Given Name

shirt_number

Shirt Number

position_name

Position Name

position_code

Position Code

starter

Starter

substitute

Substitute

captain

Captain

1WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-02951CalderónIgnacio1goal keeperGK1
2WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-09033PeñaGustavo3defenderDF11
3WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-02770PérezMario5defenderDF1
4WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-04709HernándezGuillermo6midfielderMF1
5WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-01956SalgadoHoracio López10forwardFW1
6WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-04009VantolráJosé13defenderDF1
7WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-01353GuzmánJavier14defenderDF1
8WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-02554PulidoHéctor15midfielderMF1
9WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-07267VelardeMario18midfielderMF1
10WC-19701970 FIFA World CupM-1970-01Mexico v Soviet UnionSun May 31 1970 00:00:00 GMT+0000 (Coordinated Universal Time)group stageGroup 1T-44MexicoMEX1P-07033ValdiviaJavier19forwardFW1

CREATE TABLE player_appearances (
  "key_id" BIGINT,
  "tournament_id" VARCHAR,
  "tournament_name" VARCHAR,
  "match_id" VARCHAR,
  "match_name" VARCHAR,
  "match_date" TIMESTAMP,
  "stage_name" VARCHAR,
  "group_name" VARCHAR,
  "team_id" VARCHAR,
  "team_name" VARCHAR,
  "team_code" VARCHAR,
  "home_team" BIGINT,
  "away_team" BIGINT,
  "player_id" VARCHAR,
  "family_name" VARCHAR,
  "given_name" VARCHAR,
  "shirt_number" BIGINT,
  "position_name" VARCHAR,
  "position_code" VARCHAR,
  "starter" BIGINT,
  "substitute" BIGINT,
  "captain" BIGINT
);

Share link

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