home / db

track

6 rows where mediumID = 422

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3862 422 422 1 Das Mädchen auf der Schimmelstute 349467
3863 422 422 2 Zuflucht bei Nacht 297346
3864 422 422 3 Die singende Schlange 618840
3865 422 422 4 Hinter der Mauer 494200
3866 422 422 5 Ein Opfer der Schlange 614667
3867 422 422 6 Die goldene Kobra 490867

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