home / football

season

14 rows where competition_id = 111 sorted by season_name descending

✎ View and edit SQL

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
1744 UNCAF Cup 111 2017 2017-01-01 2017-12-31 0   2026-06-07 06:58:57 2026-06-07 06:58:57 1 1   International Results CSV 1  
1688 UNCAF Cup 111 2014 2014-01-01 2014-12-31 0   2026-06-07 06:58:55 2026-06-07 06:58:55 1 1   International Results CSV 1  
1652 UNCAF Cup 111 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  
1602 UNCAF Cup 111 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  
1560 UNCAF Cup 111 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  
1509 UNCAF Cup 111 2007 2007-01-01 2007-12-31 0   2026-06-07 06:58:50 2026-06-07 06:58:50 1 1   International Results CSV 1  
1464 UNCAF Cup 111 2005 2005-01-01 2005-12-31 0   2026-06-07 06:58:49 2026-06-07 06:58:49 1 1   International Results CSV 1  
1413 UNCAF Cup 111 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  
1374 UNCAF Cup 111 2001 2001-01-01 2001-12-31 0   2026-06-07 06:58:47 2026-06-07 06:58:47 1 1   International Results CSV 1  
1312 UNCAF Cup 111 1999 1999-01-01 1999-12-31 0   2026-06-07 06:58:45 2026-06-07 06:58:45 1 1   International Results CSV 1  
1256 UNCAF Cup 111 1997 1997-01-01 1997-12-31 0   2026-06-07 06:58:44 2026-06-07 06:58:44 1 1   International Results CSV 1  
1212 UNCAF Cup 111 1995 1995-01-01 1995-12-31 0   2026-06-07 06:58:44 2026-06-07 06:58:44 1 1   International Results CSV 1  
1150 UNCAF Cup 111 1993 1993-01-01 1993-12-31 0   2026-06-07 06:58:42 2026-06-07 06:58:42 1 1   International Results CSV 1  
1104 UNCAF Cup 111 1991 1991-01-01 1991-12-31 0   2026-06-07 06:58:42 2026-06-07 06:58:42 1 1   International Results CSV 1  

Advanced export

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

CSV options:

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