home / db

track

6 rows where mediumID = 102

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
775 102 102 1 Verdeckte Fouls 618853
776 102 102 2 Die Rache des Tigers 397880
777 102 102 3 Die rätselhaften Bilder 668907
778 102 102 4 Das Geheimnis der Särge 549693
779 102 102 5 Dreckiger Deal 486267
780 102 102 6 Tödliche Spur 688893

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.708ms