home / football

season

12 rows where competition_id = 16 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
164 Copa Premio Honor Uruguayo 16 1923 1923-01-01 1923-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
154 Copa Premio Honor Uruguayo 16 1922 1922-01-01 1922-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
134 Copa Premio Honor Uruguayo 16 1920 1920-01-01 1920-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
126 Copa Premio Honor Uruguayo 16 1919 1919-01-01 1919-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
117 Copa Premio Honor Uruguayo 16 1918 1918-01-01 1918-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
112 Copa Premio Honor Uruguayo 16 1917 1917-01-01 1917-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
109 Copa Premio Honor Uruguayo 16 1916 1916-01-01 1916-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
102 Copa Premio Honor Uruguayo 16 1915 1915-01-01 1915-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
97 Copa Premio Honor Uruguayo 16 1914 1914-01-01 1914-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
92 Copa Premio Honor Uruguayo 16 1913 1913-01-01 1913-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
83 Copa Premio Honor Uruguayo 16 1912 1912-01-01 1912-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 1 1   International Results CSV 1  
76 Copa Premio Honor Uruguayo 16 1911 1911-01-01 1911-12-31 0   2026-06-07 06:58:30 2026-06-07 06:58:30 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.461ms