match
8 rows where season_id = 723 sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date, home_score, away_score, result, date (date), created_at (date), updated_at (date)
| match_id | season_id | date ▲ | kickoff | home_team_id | away_team_id | home_score | away_score | result | round_stage | matchday | venue | city | country | referee | attendance | is_neutral | is_postponed | is_cancelled | created_at | updated_at | created_by_run_id | updated_by_run_id | source_id | source_raw_key |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 9973 | 1974 723 | 1974-12-07 | Gambia 133 | Morocco 155 | 0 | 3 | A | African Cup of Nations qualification | Banjul | Banjul | Gambia | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:50.000569 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9973 | ||||
| 9963 | 1974 723 | 1974-11-24 | Morocco 155 | Gambia 133 | 3 | 0 | H | African Cup of Nations qualification | Rabat | Rabat | Morocco | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.995696 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9963 | ||||
| 9960 | 1974 723 | 1974-11-22 | Liberia 169 | Togo 148 | 0 | 2 | A | African Cup of Nations qualification | Monrovia | Monrovia | Liberia | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.994246 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9960 | ||||
| 9961 | 1974 723 | 1974-11-22 | Libya 153 | Tunisia 152 | 1 | 0 | H | African Cup of Nations qualification | Tripoli | Tripoli | Libya | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.994729 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9961 | ||||
| 9947 | 1974 723 | 1974-11-10 | Tunisia 152 | Libya 153 | 1 | 0 | H | African Cup of Nations qualification | Tunis | Tunis | Tunisia | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.987883 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9947 | ||||
| 9946 | 1974 723 | 1974-11-10 | Togo 148 | Liberia 169 | 1 | 0 | H | African Cup of Nations qualification | Lomé | Lomé | Togo | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.987400 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9946 | ||||
| 9834 | 1974 723 | 1974-08-24 | Burundi 139 | Somalia 178 | 0 | 1 | A | African Cup of Nations qualification | Bujumbura | Bujumbura | Burundi | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.932942 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9834 | ||||
| 9827 | 1974 723 | 1974-08-10 | Somalia 178 | Burundi 139 | 0 | 2 | A | African Cup of Nations qualification | Mogadishu | Mogadishu | Somalia | 0 | 0 | 0 | 2026-06-07 06:58:37 | 2026-06-07 21:03:49.929551 | 1 1 | 6 6 | International Results CSV 1 | csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:9827 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE match (
match_id INTEGER NOT NULL,
season_id INTEGER NOT NULL,
date DATE NOT NULL,
kickoff DATETIME,
home_team_id INTEGER NOT NULL,
away_team_id INTEGER NOT NULL,
home_score INTEGER,
away_score INTEGER,
result VARCHAR(1),
round_stage VARCHAR(64),
matchday INTEGER,
venue VARCHAR(256),
city VARCHAR(128),
country VARCHAR(128),
referee VARCHAR(128),
attendance INTEGER,
is_neutral BOOLEAN NOT NULL,
is_postponed BOOLEAN NOT NULL,
is_cancelled BOOLEAN NOT NULL,
created_at DATETIME NOT NULL,
updated_at DATETIME NOT NULL,
created_by_run_id INTEGER,
updated_by_run_id INTEGER,
source_id INTEGER,
source_raw_key VARCHAR(512),
CONSTRAINT pk_match PRIMARY KEY (match_id),
CONSTRAINT fk_match_season FOREIGN KEY(season_id) REFERENCES season (season_id),
CONSTRAINT fk_match_home_team FOREIGN KEY(home_team_id) REFERENCES team (team_id),
CONSTRAINT fk_match_away_team FOREIGN KEY(away_team_id) REFERENCES team (team_id),
CONSTRAINT fk_match_source FOREIGN KEY(source_id) REFERENCES data_source (source_id),
CONSTRAINT fk_match_created_by_run FOREIGN KEY(created_by_run_id) REFERENCES ingestion_run (run_id),
CONSTRAINT fk_match_updated_by_run FOREIGN KEY(updated_by_run_id) REFERENCES ingestion_run (run_id)
);
CREATE INDEX ix_match_away_team_id ON match (away_team_id);
CREATE INDEX ix_match_created_by_run_id ON match (created_by_run_id);
CREATE INDEX ix_match_source_id ON match (source_id);
CREATE INDEX ix_match_updated_by_run_id ON match (updated_by_run_id);
CREATE INDEX ix_match_date ON match (date);
CREATE INDEX ix_match_season_id ON match (season_id);
CREATE INDEX ix_match_source_raw_key ON match (source_raw_key);
CREATE INDEX ix_match_home_team_id ON match (home_team_id);
CREATE UNIQUE INDEX ux_match_season_date_teams ON match(season_id, date, home_team_id, away_team_id);