home / football

match

19 rows where home_team_id = 757 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
65101 2023-2024 1973 2024-05-19   Luton Town 757 Fulham FC 926 2 4   Premier League 38           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
65074 2023-2024 1973 2024-05-03   Luton Town 757 Everton FC 918 1 1   Premier League 36           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
65054 2023-2024 1973 2024-04-20   Luton Town 757 Brentford FC 928 1 5   Premier League 34           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
65038 2023-2024 1973 2024-04-06   Luton Town 757 AFC Bournemouth 923 2 1   Premier League 32           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
65005 2023-2024 1973 2024-03-16   Luton Town 757 Nottingham Forest 750 1 1   Premier League 29           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64990 2023-2024 1973 2024-03-02   Luton Town 757 Aston Villa 737 2 3   Premier League 27           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64972 2023-2024 1973 2024-02-18   Luton Town 757 Manchester U 924 1 2   Premier League 25           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64957 2023-2024 1973 2024-02-10   Luton Town 757 Sheffield United 758 1 3   Premier League 24           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64936 2023-2024 1973 2024-01-30   Luton Town 757 Brighton & Hove Albion 740 4 0   Premier League 22           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64914 2023-2024 1973 2023-12-30   Luton Town 757 Chelsea FC 915 2 3   Premier League 20           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64898 2023-2024 1973 2023-12-23   Luton Town 757 Newcastle United 749 1 0   Premier League 18           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64881 2023-2024 1973 2023-12-10   Luton Town 757 Manchester City 748 1 2   Premier League 16           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64864 2023-2024 1973 2023-12-05   Luton Town 757 Arsenal FC 912 3 4   Premier League 15           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64845 2023-2024 1973 2023-11-25   Luton Town 757 Crystal Palace 742 2 1   Premier League 13           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64831 2023-2024 1973 2023-11-05   Luton Town 757 Liverpool FC 914 1 1   Premier League 11           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64793 2023-2024 1973 2023-10-07   Luton Town 757 Tottenham Hotspur 752 0 1   Premier League 8           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64742 2023-2024 1973 2023-10-03   Luton Town 757 Burnley FC 916 1 2   Premier League 2           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64774 2023-2024 1973 2023-09-23   Luton Town 757 Wolverhampton Wanderers 754 1 1   Premier League 6           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  
64753 2023-2024 1973 2023-09-01   Luton Town 757 West Ham United 753 1 2   Premier League 4           0 0 0 2026-06-11T02:05:54 2026-06-11T02:05:54     International Results CSV 1  

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