home / db

track

8 rows where mediumID = 73

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
583 73 73 1 Doppelte Abfuhr 578787
584 73 73 2 Miss Madigans Medaillon 419333
585 73 73 3 Hilferuf in der Nacht 678707
586 73 73 4 Poltergeister 321800
587 73 73 5 Terror hinter verschlossener Tür 833093
588 73 73 6 Schwebendes Geschirr 345893
589 73 73 7 Der Geistesblitz 425374
590 73 73 8 Ein alter Bekannter 394333

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