franchise_history
4 rows where franchise_id = 33
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 |
|---|---|---|---|---|---|---|---|---|---|
| 138 | 33 33 | KEN | 0 | Kentucky Thoroughblades | Kentucky | Thoroughblades | 1996 | 2001 | |
| 139 | 33 33 | Cleveland Barons 325 | CLE | 0 | Cleveland Barons | Cleveland | Barons | 2001 | 2006 |
| 140 | 33 33 | Worcester Sharks 370 | WOR | 0 | Worcester Sharks | Worcester | Sharks | 2006 | 2015 |
| 141 | 33 33 | San Jose Barracuda 405 | SJ | 1 | San Jose Barracuda | San Jose | Barracuda | 2015 |
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
);