home / db

track

7 rows where mediumID = 242

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2327 242 242 1 Aus eins wird zwei 354520
2328 242 242 2 Die Uhr tickt 622760
2329 242 242 3 Im Reich der Ungeheuer 753307
2330 242 242 4 Die Suche beginnt 564493
2331 242 242 5 Wieder vereint 802253
2332 242 242 6 Die Fassade fällt 815747
2333 242 242 7 Ende mit Schrecken 589973

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