home / football

team_alias

5 rows where team_id = 406

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: raw_name, source_id, created_at, updated_at, created_at (date), updated_at (date)

alias_id ▼ team_id raw_name source_id confidence created_at updated_at created_by_run_id updated_by_run_id source_raw_key
65 Troyes 406 Troyes International Results CSV 1 1.0 2026-06-08 09:29:37 2026-06-08 09:29:37 14 14    
181 Troyes 406 ATAC Troyes International Results CSV 1 1.0 2026-06-08 09:31:36 2026-06-08 09:31:36 14 14    
186 Troyes 406 Association Troyes-Aube-Champagne International Results CSV 1 1.0 2026-06-08 09:31:36 2026-06-08 09:31:36 14 14    
212 Troyes 406 Entente Sp. de Troyes Aube Champagne International Results CSV 1 1.0 2026-06-08 09:31:42 2026-06-08 09:31:42 14 14    
1296 Troyes 406 Troyes Understat 3 1.0 2026-06-11 20:51:27 2026-06-11 20:51:27      

Advanced export

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

CSV options:

CREATE TABLE team_alias (
	alias_id INTEGER NOT NULL, 
	team_id INTEGER NOT NULL, 
	raw_name VARCHAR(128) NOT NULL, 
	source_id INTEGER NOT NULL, 
	confidence FLOAT NOT NULL, 
	created_at DATETIME NOT NULL, 
	updated_at DATETIME NOT NULL, 
	created_by_run_id INTEGER, 
	updated_by_run_id INTEGER, 
	source_raw_key VARCHAR(512), 
	PRIMARY KEY (alias_id), 
	CONSTRAINT uq_team_alias_raw_source UNIQUE (raw_name, source_id), 
	FOREIGN KEY(team_id) REFERENCES team (team_id), 
	FOREIGN KEY(source_id) REFERENCES data_source (source_id), 
	FOREIGN KEY(created_by_run_id) REFERENCES ingestion_run (run_id), 
	FOREIGN KEY(updated_by_run_id) REFERENCES ingestion_run (run_id)
);
CREATE INDEX ix_team_alias_created_by_run_id ON team_alias (created_by_run_id);
CREATE INDEX ix_team_alias_team_id ON team_alias (team_id);
CREATE INDEX ix_team_alias_source_id ON team_alias (source_id);
CREATE INDEX ix_team_alias_source_raw_key ON team_alias (source_raw_key);
CREATE INDEX ix_team_alias_updated_by_run_id ON team_alias (updated_by_run_id);
CREATE INDEX ix_team_alias_raw_name ON team_alias (raw_name);
Powered by Datasette · Queries took 12.895ms