home / db

track

6 rows where mediumID = 274

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2554 274 274 1 Ein Mann verschwindet 442800
2555 274 274 2 Der Tausend-Dollar-Fisch 462893
2556 274 274 3 Delfine und begeisterte Fans 715574
2557 274 274 4 Im Zwielicht 409600
2558 274 274 5 Visite bei der Privatärztin 771146
2559 274 274 6 Zugang zur Vergangenheit 825254

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