home / football

match

6 rows where away_team_id = 287 sorted by date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: season_id, home_team_id, home_score, away_score, venue, city, created_at, 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
36262 2012 1642 2012-09-26   French Guiana 84 Saint Pierre and Miquelon 287 11 1 H Coupe de l'Outre-Mer   Saint-Ouen-l'Aumône Saint-Ouen-l'Aumône France     1 0 0 2026-06-07 06:58:54 2026-06-07 21:04:04.617751 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:36262
36252 2012 1642 2012-09-24   Réunion 109 Saint Pierre and Miquelon 287 10 0 H Coupe de l'Outre-Mer   Saint-Ouen Saint-Ouen France     1 0 0 2026-06-07 06:58:54 2026-06-07 21:04:04.612911 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:36252
36246 2012 1642 2012-09-22   Guadeloupe 81 Saint Pierre and Miquelon 287 13 0 H Coupe de l'Outre-Mer   Versailles Versailles France     1 0 0 2026-06-07 06:58:54 2026-06-07 21:04:04.610006 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:36246
34137 2010 1588 2010-09-28   Mayotte 265 Saint Pierre and Miquelon 287 10 0 H Coupe de l'Outre-Mer   Val-d'Oise Val-d'Oise France     1 0 0 2026-06-07 06:58:52 2026-06-07 21:04:03.475546 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:34137
34126 2010 1588 2010-09-25   French Guiana 84 Saint Pierre and Miquelon 287 7 0 H Coupe de l'Outre-Mer   Hauts de Seine Hauts de Seine France     1 0 0 2026-06-07 06:58:52 2026-06-07 21:04:03.470173 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:34126
34116 2010 1588 2010-09-22   Réunion 109 Saint Pierre and Miquelon 287 11 0 H Coupe de l'Outre-Mer   Val-d'Oise Val-d'Oise France     1 0 0 2026-06-07 06:58:52 2026-06-07 21:04:03.465206 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:34116

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 25.696ms