home / db

track

8 rows where mediumID = 74

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
591 74 74 1 Eine geheimnisvolle Erbschaft 581480
592 74 74 2 Gestohlene Informationen 396533
593 74 74 3 Ein alter Trick 357014
594 74 74 4 Der undurchsichtige Mr. Whitehead 654306
595 74 74 5 In der Höhle des Löwen 461267
596 74 74 6 Das brennende Schwert 552787
597 74 74 7 Wenn Tag und Nacht sich vereinen 819840
598 74 74 8 Logische Schlussfolgerungen 618880

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