Football Database
Football and Betting Statistics of the European Top5 Leagues
@kaggle.technika148_football_database
Football and Betting Statistics of the European Top5 Leagues
@kaggle.technika148_football_database
This dataset contains football-related data covering the Top5 leagues in Europe from 2014-2020. It is structured like a relational database, which makes it easy to work with, regardless of the problem you want so solve.
27 August 2021
CREATE TABLE appearances (
"gameid" BIGINT,
"playerid" BIGINT,
"goals" BIGINT,
"owngoals" BIGINT,
"shots" BIGINT,
"xgoals" DOUBLE,
"xgoalschain" DOUBLE,
"xgoalsbuildup" DOUBLE,
"assists" BIGINT,
"keypasses" BIGINT,
"xassists" DOUBLE,
"position" VARCHAR,
"positionorder" BIGINT,
"yellowcard" BIGINT,
"redcard" BIGINT,
"time" BIGINT,
"substitutein" BIGINT,
"substituteout" BIGINT,
"leagueid" BIGINT
);CREATE TABLE games (
"gameid" BIGINT,
"leagueid" BIGINT,
"season" BIGINT,
"date" TIMESTAMP,
"hometeamid" BIGINT,
"awayteamid" BIGINT,
"homegoals" BIGINT,
"awaygoals" BIGINT,
"homeprobability" DOUBLE,
"drawprobability" DOUBLE,
"awayprobability" DOUBLE,
"homegoalshalftime" BIGINT,
"awaygoalshalftime" BIGINT,
"b365h" DOUBLE,
"b365d" DOUBLE,
"b365a" DOUBLE,
"bwh" DOUBLE,
"bwd" DOUBLE,
"bwa" DOUBLE,
"iwh" DOUBLE,
"iwd" DOUBLE,
"iwa" DOUBLE,
"psh" DOUBLE,
"psd" DOUBLE,
"psa" DOUBLE,
"whh" DOUBLE,
"whd" DOUBLE,
"wha" DOUBLE,
"vch" DOUBLE,
"vcd" DOUBLE,
"vca" DOUBLE,
"psch" DOUBLE,
"pscd" DOUBLE,
"psca" DOUBLE
);CREATE TABLE leagues (
"leagueid" BIGINT,
"name" VARCHAR,
"understatnotation" VARCHAR
);CREATE TABLE shots (
"gameid" BIGINT,
"shooterid" BIGINT,
"assisterid" DOUBLE,
"minute" BIGINT,
"situation" VARCHAR,
"lastaction" VARCHAR,
"shottype" VARCHAR,
"shotresult" VARCHAR,
"xgoal" DOUBLE,
"positionx" DOUBLE,
"positiony" DOUBLE
);CREATE TABLE teams (
"teamid" BIGINT,
"name" VARCHAR
);CREATE TABLE teamstats (
"gameid" BIGINT,
"teamid" BIGINT,
"season" BIGINT,
"date" TIMESTAMP,
"location" VARCHAR,
"goals" BIGINT,
"xgoals" DOUBLE,
"shots" BIGINT,
"shotsontarget" BIGINT,
"deep" BIGINT,
"ppda" DOUBLE,
"fouls" BIGINT,
"corners" BIGINT,
"yellowcards" DOUBLE,
"redcards" BIGINT,
"result" VARCHAR
);Anyone who has the link will be able to view this.