home / db

track

8 rows where mediumID = 321

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3031 321 321 1 Kellergeister 642080
3032 321 321 2 Erfinderpech 530533
3033 321 321 3 Totenkopfkiste 689507
3034 321 321 4 Geisterjagd 696627
3035 321 321 5 Piratenburg 507560
3036 321 321 6 Gummigeister 367560
3037 321 321 7 Der Graf ohne Kopf 467733
3038 321 321 8 Otto, das Schlossgespenst 414707

Advanced export

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

CSV options:

CREATE TABLE "track"(
  "trackID" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
  "mediumID" INTEGER NOT NULL REFERENCES "medium"("mediumID") ON DELETE CASCADE ON UPDATE CASCADE,
  "position" INTEGER NOT NULL CHECK("position" > 0),
  "titel" TEXT NOT NULL,
  "dauer" INTEGER NOT NULL CHECK("dauer" > 0),
  UNIQUE("mediumID", "position")
);
Powered by Datasette · Queries took 5.484ms