home / db

track

6 rows where mediumID = 90

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
695 90 90 1 Im Gruselkabinett 531893
696 90 90 2 Das verbrannte Grab 501427
697 90 90 3 Die vier Zeichen 739200
698 90 90 4 Die Maske des Feuerteufels 292333
699 90 90 5 Blutbad 864574
700 90 90 6 Feuriges Finale 603520

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