home / db

track

6 rows where mediumID = 397

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3668 397 397 1 Eine Freundin baut Mist 701200
3669 397 397 2 Zufall – oder nicht? 714067
3670 397 397 3 Was Barbara getan hat und warum 643213
3671 397 397 4 Die älteste Königin der Stadt 489960
3672 397 397 5 Giftschrank? 706827
3673 397 397 6 Labyrinth der Finsternis 1273853

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