home / db

track

8 rows where mediumID = 241

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2319 241 241 1 Premierenfieber 437667
2320 241 241 2 Verschwunden 476773
2321 241 241 3 In Luft aufgelöst 893107
2322 241 241 4 Unsichtbare Materie 560146
2323 241 241 5 Notruf 732787
2324 241 241 6 Erpressung 342373
2325 241 241 7 Verstorben 424480
2326 241 241 8 Die Masken fallen 749507

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