franchise_history
3 rows where franchise_id = 3
This data as json, CSV (advanced)
Suggested facets: active
| history_id ▼ | franchise_id | team_id | team_code | active | name | city | nickname | start_year | end_year |
|---|---|---|---|---|---|---|---|---|---|
| 21 | 3 3 | CD | 0 | Capital District Islanders | Capital District | Islanders | 1990 | 1993 | |
| 22 | 3 3 | Albany River Rats 318 | ALB | 0 | Albany River Rats | Albany River | Rats | 1993 | 2010 |
| 23 | 3 3 | Charlotte Checkers 384 | CLT | 1 | Charlotte Checkers | Charlotte | Checkers | 2010 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE franchise_history (
history_id INTEGER PRIMARY KEY AUTOINCREMENT,
franchise_id INTEGER NOT NULL REFERENCES franchise(franchise_id),
team_id INTEGER REFERENCES team(team_id),
team_code TEXT NOT NULL,
active BOOLEAN NOT NULL,
name TEXT NOT NULL,
city TEXT NOT NULL,
nickname TEXT NOT NULL,
start_year INTEGER NOT NULL,
end_year INTEGER
);