home / db

track

6 rows where mediumID = 100

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
763 100 100 1 Botschaft von Geisterhand 490480
764 100 100 2 Der verschwundene Schatz 608040
765 100 100 3 Die Geisterinsel 481640
766 100 100 4 Der unsichtbare Gegner 515720
767 100 100 5 Gefahr im Verzug 564573
768 100 100 6 Das Geisterschiff 544120

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