home / db

track

8 rows where mediumID = 70

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
559 70 70 1 Der Schuss! 729720
560 70 70 2 Sally Samson tobt 402053
561 70 70 3 Intrigen überall 528174
562 70 70 4 Keine neue Spur 318600
563 70 70 5 Justus Jonas jobt 636466
564 70 70 6 Falsches Spiel 311560
565 70 70 7 Eine böse Überraschung 368840
566 70 70 8 Kurssturz 488880

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