home / football

season

13 rows where competition_id = 36 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
1302 Asian Games 36 1998 1998-01-01 1998-12-31 0   2026-06-07 06:58:45 2026-06-07 06:58:45 1 1   International Results CSV 1  
1186 Asian Games 36 1994 1994-01-01 1994-12-31 0   2026-06-07 06:58:43 2026-06-07 06:58:43 1 1   International Results CSV 1  
1091 Asian Games 36 1990 1990-01-01 1990-12-31 0   2026-06-07 06:58:42 2026-06-07 06:58:42 1 1   International Results CSV 1  
994 Asian Games 36 1986 1986-01-01 1986-12-31 0   2026-06-07 06:58:40 2026-06-07 06:58:40 1 1   International Results CSV 1  
906 Asian Games 36 1982 1982-01-01 1982-12-31 0   2026-06-07 06:58:39 2026-06-07 06:58:39 1 1   International Results CSV 1  
819 Asian Games 36 1978 1978-01-01 1978-12-31 0   2026-06-07 06:58:38 2026-06-07 06:58:38 1 1   International Results CSV 1  
725 Asian Games 36 1974 1974-01-01 1974-12-31 0   2026-06-07 06:58:37 2026-06-07 06:58:37 1 1   International Results CSV 1  
643 Asian Games 36 1970 1970-01-01 1970-12-31 0   2026-06-07 06:58:36 2026-06-07 06:58:36 1 1   International Results CSV 1  
580 Asian Games 36 1966 1966-01-01 1966-12-31 0   2026-06-07 06:58:35 2026-06-07 06:58:35 1 1   International Results CSV 1  
508 Asian Games 36 1962 1962-01-01 1962-12-31 0   2026-06-07 06:58:34 2026-06-07 06:58:34 1 1   International Results CSV 1  
452 Asian Games 36 1958 1958-01-01 1958-12-31 0   2026-06-07 06:58:33 2026-06-07 06:58:33 1 1   International Results CSV 1  
404 Asian Games 36 1954 1954-01-01 1954-12-31 0   2026-06-07 06:58:33 2026-06-07 06:58:33 1 1   International Results CSV 1  
380 Asian Games 36 1951 1951-01-01 1951-12-31 0   2026-06-07 06:58:32 2026-06-07 06:58:32 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 17.024ms