home / db

track

8 rows where mediumID = 288

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2670 288 288 1 Das Grauen in Pink 397733
2671 288 288 2 Entführung 401440
2672 288 288 3 Warnung 709494
2673 288 288 4 Sacramento 439680
2674 288 288 5 Stichwort: Wahrheit 646853
2675 288 288 6 Gleichungen mit drei Unbekannten 951547
2676 288 288 7 Jede Menge Geld 362506
2677 288 288 8 Schlangenjagd 706227

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