home / db

track

6 rows where mediumID = 253

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2405 253 253 1 Geheimagent Blake Turner 831080
2406 253 253 2 Whites Geheimnisse 749200
2407 253 253 3 Es piept 395520
2408 253 253 4 Besuch aus der Vergangenheit 734986
2409 253 253 5 Nächtliche Verfolgung 684587
2410 253 253 6 Befreiung 878147

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