team
1 row where division_id = 6
This data as json, CSV (advanced)
id ▼ | name | year_founded | division_id | franchise_id |
---|---|---|---|---|
52 | Adirondak Flames | 2014 | North 6 | 2 2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "team" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(32) NULL, "year_founded" integer NULL, "division_id" bigint NULL REFERENCES "division" ("id") DEFERRABLE INITIALLY DEFERRED, "franchise_id" bigint NULL REFERENCES "franchise" ("id") DEFERRABLE INITIALLY DEFERRED); CREATE INDEX "team_division_id_d045beb7" ON "team" ("division_id"); CREATE INDEX "team_franchise_id_c7da83a8" ON "team" ("franchise_id");