home / db

track

7 rows where mediumID = 259

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2448 259 259 1 Ausgerutscht! 533907
2449 259 259 2 Geisterlift 543226
2450 259 259 3 Die verbotene Zone 754360
2451 259 259 4 Das weiße Grab 860000
2452 259 259 5 Alte Geschichten 451814
2453 259 259 6 Das Astloch 528306
2454 259 259 7 Demaskiert 896640

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 6.349ms