home / my_database

Menu
  • Playoff Bracket
  • Game Predictor
  • Season Predictor

franchise_history

2 rows where franchise_id = 18

✎ View and edit SQL

This data as json, CSV (advanced)

history_id ▼ franchise_id team_id team_code active name city nickname start_year end_year
90 18 18   BS 0 Bridgeport Sound Tigers Bridgeport Sound Tigers 2001 2021
91 18 18 Bridgeport Islanders 317 BRI 1 Bridgeport Islanders Bridgeport Islanders 2021  

Advanced export

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

CSV options:

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
        );
Powered by Datasette · Queries took 13.424ms