Australian Football League (AFL) Database
All of the key stats, game by game, player by player
@kaggle.stoney71_aflstats
All of the key stats, game by game, player by player
@kaggle.stoney71_aflstats
CREATE TABLE games (
"gameid" VARCHAR,
"year" BIGINT,
"round" VARCHAR,
"date" TIMESTAMP,
"maxtemp" DOUBLE,
"mintemp" DOUBLE,
"rainfall" DOUBLE,
"venue" VARCHAR,
"starttime" VARCHAR,
"attendance" BIGINT,
"hometeam" VARCHAR,
"hometeamscoreqt" DOUBLE,
"hometeamscoreht" DOUBLE,
"hometeamscore3qt" DOUBLE,
"hometeamscoreft" DOUBLE,
"hometeamscore" BIGINT,
"awayteam" VARCHAR,
"awayteamscoreqt" DOUBLE,
"awayteamscoreht" DOUBLE,
"awayteamscore3qt" DOUBLE,
"awayteamscoreft" DOUBLE,
"awayteamscore" BIGINT
);
CREATE TABLE players (
"playerid" BIGINT,
"displayname" VARCHAR,
"height" BIGINT,
"weight" BIGINT,
"dob" VARCHAR,
"position" VARCHAR,
"origin" VARCHAR
);
CREATE TABLE stats (
"gameid" VARCHAR,
"team" VARCHAR,
"year" BIGINT,
"round" VARCHAR,
"playerid" BIGINT,
"displayname" VARCHAR,
"gamenumber" BIGINT,
"disposals" BIGINT,
"kicks" BIGINT,
"marks" BIGINT,
"handballs" BIGINT,
"goals" BIGINT,
"behinds" BIGINT,
"hitouts" BIGINT,
"tackles" BIGINT,
"rebounds" BIGINT,
"inside50s" BIGINT,
"clearances" BIGINT,
"clangers" BIGINT,
"frees" BIGINT,
"freesagainst" BIGINT,
"brownlowvotes" BIGINT,
"contestedpossessions" BIGINT,
"uncontestedpossessions" BIGINT,
"contestedmarks" BIGINT,
"marksinside50" BIGINT,
"onepercenters" BIGINT,
"bounces" BIGINT,
"goalassists" BIGINT,
"n__played" BIGINT,
"subs" VARCHAR
);
Anyone who has the link will be able to view this.