season
14 rows where competition_id = 122 sorted by season_name descending
This data as json, CSV (advanced)
Suggested facets: created_at, updated_at, start_date (date), end_date (date), created_at (date), updated_at (date)
| season_id | competition_id | season_name ▲ | start_date | end_date | is_active | teams_expected | created_at | updated_at | created_by_run_id | updated_by_run_id | source_id | source_raw_key |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1866 | SAFF Cup 122 | 2023 | 2023-01-01 | 2023-12-31 | 0 | 2026-06-07 06:59:00 | 2026-06-07 06:59:00 | 1 1 | International Results CSV 1 | |||
| 1825 | SAFF Cup 122 | 2021 | 2021-01-01 | 2021-12-31 | 0 | 2026-06-07 06:58:59 | 2026-06-07 06:58:59 | 1 1 | International Results CSV 1 | |||
| 1775 | SAFF Cup 122 | 2018 | 2018-01-01 | 2018-12-31 | 0 | 2026-06-07 06:58:57 | 2026-06-07 06:58:57 | 1 1 | International Results CSV 1 | |||
| 1718 | SAFF Cup 122 | 2016 | 2016-01-01 | 2016-12-31 | 0 | 2026-06-07 06:58:56 | 2026-06-07 06:58:56 | 1 1 | International Results CSV 1 | |||
| 1717 | SAFF Cup 122 | 2015 | 2015-01-01 | 2015-12-31 | 0 | 2026-06-07 06:58:56 | 2026-06-07 06:58:56 | 1 1 | International Results CSV 1 | |||
| 1668 | SAFF Cup 122 | 2013 | 2013-01-01 | 2013-12-31 | 0 | 2026-06-07 06:58:54 | 2026-06-07 06:58:54 | 1 1 | International Results CSV 1 | |||
| 1621 | SAFF Cup 122 | 2011 | 2011-01-01 | 2011-12-31 | 0 | 2026-06-07 06:58:53 | 2026-06-07 06:58:53 | 1 1 | International Results CSV 1 | |||
| 1573 | SAFF Cup 122 | 2009 | 2009-01-01 | 2009-12-31 | 0 | 2026-06-07 06:58:52 | 2026-06-07 06:58:52 | 1 1 | International Results CSV 1 | |||
| 1539 | SAFF Cup 122 | 2008 | 2008-01-01 | 2008-12-31 | 0 | 2026-06-07 06:58:51 | 2026-06-07 06:58:51 | 1 1 | International Results CSV 1 | |||
| 1476 | SAFF Cup 122 | 2005 | 2005-01-01 | 2005-12-31 | 0 | 2026-06-07 06:58:50 | 2026-06-07 06:58:50 | 1 1 | International Results CSV 1 | |||
| 1410 | SAFF Cup 122 | 2003 | 2003-01-01 | 2003-12-31 | 0 | 2026-06-07 06:58:48 | 2026-06-07 06:58:48 | 1 1 | International Results CSV 1 | |||
| 1314 | SAFF Cup 122 | 1999 | 1999-01-01 | 1999-12-31 | 0 | 2026-06-07 06:58:46 | 2026-06-07 06:58:46 | 1 1 | International Results CSV 1 | |||
| 1267 | SAFF Cup 122 | 1997 | 1997-01-01 | 1997-12-31 | 0 | 2026-06-07 06:58:45 | 2026-06-07 06:58:45 | 1 1 | International Results CSV 1 | |||
| 1201 | SAFF Cup 122 | 1995 | 1995-01-01 | 1995-12-31 | 0 | 2026-06-07 06:58:43 | 2026-06-07 06:58:43 | 1 1 | International Results CSV 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE season ( season_id INTEGER NOT NULL, competition_id INTEGER NOT NULL, season_name VARCHAR(32) NOT NULL, start_date DATE, end_date DATE, is_active BOOLEAN NOT NULL, teams_expected INTEGER, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, created_by_run_id INTEGER, updated_by_run_id INTEGER, source_id INTEGER NOT NULL, source_raw_key VARCHAR(512), PRIMARY KEY (season_id), CONSTRAINT uq_season_competition_name UNIQUE (competition_id, season_name), FOREIGN KEY(competition_id) REFERENCES competition (competition_id), FOREIGN KEY(created_by_run_id) REFERENCES ingestion_run (run_id), FOREIGN KEY(updated_by_run_id) REFERENCES ingestion_run (run_id), FOREIGN KEY(source_id) REFERENCES data_source (source_id) ); CREATE INDEX ix_season_updated_by_run_id ON season (updated_by_run_id); CREATE INDEX ix_season_source_raw_key ON season (source_raw_key); CREATE INDEX ix_season_competition_id ON season (competition_id); CREATE INDEX ix_season_created_by_run_id ON season (created_by_run_id); CREATE INDEX ix_season_source_id ON season (source_id); CREATE INDEX ix_season_season_name ON season (season_name);