Football Matches Results
A dataset of football matches results
@kaggle.rodrigoazs_football_results
A dataset of football matches results
@kaggle.rodrigoazs_football_results
CREATE TABLE results (
"date" TIMESTAMP,
"home_team" VARCHAR,
"home_score" BIGINT,
"away_score" BIGINT,
"away_team" VARCHAR,
"neutral" BOOLEAN,
"knockout" BOOLEAN,
"stage" VARCHAR,
"tournament_name" VARCHAR,
"tournament_year" BIGINT
);
CREATE TABLE teams (
"team" VARCHAR,
"full_name" VARCHAR,
"country" VARCHAR
);
Anyone who has the link will be able to view this.