franchise_history
2 rows where franchise_id = 34
This data as json, CSV (advanced)
| history_id ▼ | franchise_id | team_id | team_code | active | name | city | nickname | start_year | end_year |
|---|---|---|---|---|---|---|---|---|---|
| 142 | 34 34 | Utah Grizzlies 399 | UTA | 0 | Utah Grizzlies | Utah | Grizzlies | 2001 | 2005 |
| 143 | 34 34 | Cleveland Monsters 373 | CLE | 1 | Cleveland Monsters | Cleveland | Monsters | 2007 |
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
);