home / football

match

19 rows where home_team_id = 1287 sorted by date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: home_score, away_score, 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
95078 2010-2011 2015 2011-05-14   Blackpool 1287 Bologna 783 4 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95063 2010-2011 2015 2011-04-30   Blackpool 1287 Stoke 1285 0 0   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95055 2010-2011 2015 2011-04-23   Blackpool 1287 Newcastle 1272 1 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95048 2010-2011 2015 2011-04-16   Blackpool 1287 Wigan 1284 1 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95046 2010-2011 2015 2011-04-10   Blackpool 1287 Arsenal 736 1 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95025 2010-2011 2015 2011-03-07   Blackpool 1287 Chelsea 741 1 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95009 2010-2011 2015 2011-02-22   Blackpool 1287 Tottenham 1273 3 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
95004 2010-2011 2015 2011-02-12   Blackpool 1287 Aston Villa 737 1 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94993 2010-2011 2015 2011-02-02   Blackpool 1287 West Ham 1275 1 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94987 2010-2011 2015 2011-01-25   Blackpool 1287 Manchester United 338 2 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94981 2010-2011 2015 2011-01-22   Blackpool 1287 Sunderland 1279 1 2   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94971 2010-2011 2015 2011-01-12   Blackpool 1287 Liverpool 747 2 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94964 2010-2011 2015 2011-01-04   Blackpool 1287 Birmingham 1282 1 2   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94914 2010-2011 2015 2010-11-20   Blackpool 1287 Wolverhampton Wanderers 754 2 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94895 2010-2011 2015 2010-11-06   Blackpool 1287 Everton 743 2 2   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94892 2010-2011 2015 2010-11-01   Blackpool 1287 West Bromwich 922 2 1   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94876 2010-2011 2015 2010-10-17   Blackpool 1287 Manchester City 748 2 3   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94859 2010-2011 2015 2010-09-25   Blackpool 1287 Blackburn 1270 1 2   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        
94836 2010-2011 2015 2010-08-28   Blackpool 1287 Fulham 744 2 2   Premier League   home         0 0 0 2026-06-11T09:41:59.006399 2026-06-11T09:41:59.006399        

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 30.927ms