home / db

track

6 rows where mediumID = 93

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
713 93 93 1 Bei Nacht und Nebel 738640
714 93 93 2 Jagd auf das Geisterschiff 421400
715 93 93 3 Duncan, der Finstere 477507
716 93 93 4 Das Tagebuch des Tyrannen 374306
717 93 93 5 Die Suche nach der Schatzkarte 610667
718 93 93 6 In Luft aufgelöst 969613

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