home / my_database

Menu
  • Playoff Bracket
  • Game Predictor
  • Season Predictor

franchise_history

3 rows where franchise_id = 10

✎ View and edit SQL

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
47 10 10   BAL 0 Baltimore Bandits Baltimore Bandits 1995 1997
48 10 10 Cincinnati Mighty Ducks 398 CIN 0 Cincinnati Mighty Ducks Cincinnati Mighty Ducks 1997 2005
49 10 10 Rockford IceHogs 372 RFD 1 Rockford IceHogs Rockford IceHogs 2007  

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 19.269ms