home / football

match

13 rows where season_id = 1766 sorted by date descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: date, home_team_id, home_score, away_score, result, is_neutral, 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
41427 2018 1766 2018-03-27   Maldives 214 Bhutan 221 7 0 H AFC Asian Cup qualification   Malé Malé Maldives     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.471663 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41427
41434 2018 1766 2018-03-27   Oman 184 Palestine 181 1 0 H AFC Asian Cup qualification   Muscat Muscat Oman     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.475237 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41434
41408 2018 1766 2018-03-27   Bahrain 183 Turkmenistan 240 4 0 H AFC Asian Cup qualification   Riffa Riffa Bahrain     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.461962 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41408
41451 2018 1766 2018-03-27   Yemen 182 Nepal 198 2 1 H AFC Asian Cup qualification   Doha Doha Qatar     1 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.483856 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41451
41420 2018 1766 2018-03-27   Jordan 175 Vietnam 115 1 1 D AFC Asian Cup qualification   Amman Amman Jordan     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.468109 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41420
41421 2018 1766 2018-03-27   North Korea 149 Hong Kong 134 2 0 H AFC Asian Cup qualification   Pyongyang Pyongyang North Korea     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.468623 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41421
41423 2018 1766 2018-03-27   Kyrgyzstan 145 India 92 2 1 H AFC Asian Cup qualification   Bishkek Bishkek Kyrgyzstan     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.469636 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41423
41411 2018 1766 2018-03-27   Myanmar 125 Macau 116 1 0 H AFC Asian Cup qualification   Yangon Yangon Myanmar     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.463491 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41411
41445 2018 1766 2018-03-27   Taiwan 123 Singapore 135 1 0 H AFC Asian Cup qualification   Taipei Taipei Taiwan     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.480816 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41445
41403 2018 1766 2018-03-27   Afghanistan 98 Cambodia 142 2 1 H AFC Asian Cup qualification   Dushanbe Dushanbe Tajikistan     1 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.459434 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41403
41425 2018 1766 2018-03-27   Lebanon 96 Malaysia 136 2 1 H AFC Asian Cup qualification   Beirut Beirut Lebanon     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.470650 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41425
41436 2018 1766 2018-03-27   Philippines 32 Tajikistan 241 2 1 H AFC Asian Cup qualification   Manila Manila Philippines     0 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.476257 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41436
41332 2018 1766 2018-03-22   Kyrgyzstan 145 Myanmar 125 5 1 H AFC Asian Cup qualification   Incheon Incheon South Korea     1 0 0 2026-06-07 06:58:57 2026-06-07 21:04:07.423276 1 1 6 6 International Results CSV 1 csv:///home/nabaz/Projects/world-cup-2026-predictor/data/raw/international_results.csv:41332

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