division
6 rows
This data as json, CSV (advanced)
Suggested facets: name, conference_id
| id ▼ | name | conference_id |
|---|---|---|
| 1 | Atlantic | Eastern 1 |
| 2 | North | Eastern 1 |
| 3 | Central | Western 2 |
| 4 | Pacific | Western 2 |
| 5 | West | Western 2 |
| 6 | North | Western 2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "division" ("id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "name" varchar(16) NULL, "conference_id" bigint NULL REFERENCES "conference" ("id") DEFERRABLE INITIALLY DEFERRED);
CREATE INDEX "division_conference_id_353b5fb4" ON "division" ("conference_id");