home / football

season

18 rows where competition_id = 28 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
852 Balkan Cup 28 1980 1980-01-01 1980-12-31 0   2026-06-07 06:58:38 2026-06-07 06:58:38 1 1   International Results CSV 1  
802 Balkan Cup 28 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  
786 Balkan Cup 28 1977 1977-01-01 1977-12-31 0   2026-06-07 06:58:37 2026-06-07 06:58:37 1 1   International Results CSV 1  
767 Balkan Cup 28 1976 1976-01-01 1976-12-31 0   2026-06-07 06:58:37 2026-06-07 06:58:37 1 1   International Results CSV 1  
747 Balkan Cup 28 1975 1975-01-01 1975-12-31 0   2026-06-07 06:58:37 2026-06-07 06:58:37 1 1   International Results CSV 1  
716 Balkan Cup 28 1974 1974-01-01 1974-12-31 0   2026-06-07 06:58:36 2026-06-07 06:58:36 1 1   International Results CSV 1  
694 Balkan Cup 28 1973 1973-01-01 1973-12-31 0   2026-06-07 06:58:36 2026-06-07 06:58:36 1 1   International Results CSV 1  
352 Balkan Cup 28 1948 1948-01-01 1948-12-31 0   2026-06-07 06:58:32 2026-06-07 06:58:32 1 1   International Results CSV 1  
345 Balkan Cup 28 1947 1947-01-01 1947-12-31 0   2026-06-07 06:58:32 2026-06-07 06:58:32 1 1   International Results CSV 1  
338 Balkan Cup 28 1946 1946-01-01 1946-12-31 0   2026-06-07 06:58:32 2026-06-07 06:58:32 1 1   International Results CSV 1  
278 Balkan Cup 28 1936 1936-01-01 1936-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
265 Balkan Cup 28 1935 1935-01-01 1935-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
264 Balkan Cup 28 1934 1934-01-01 1934-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
251 Balkan Cup 28 1933 1933-01-01 1933-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
244 Balkan Cup 28 1932 1932-01-01 1932-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
233 Balkan Cup 28 1931 1931-01-01 1931-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
220 Balkan Cup 28 1930 1930-01-01 1930-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 1 1   International Results CSV 1  
217 Balkan Cup 28 1929 1929-01-01 1929-12-31 0   2026-06-07 06:58:31 2026-06-07 06:58:31 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 14.105ms