home / db

track

7 rows where mediumID = 358

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3328 358 358 1 Pleitegeier 581507
3329 358 358 2 Drachenalarm 641146
3330 358 358 3 Serieneinbruch 632667
3331 358 358 4 Streng geheim 615280
3332 358 358 5 Geldübergabe 479653
3333 358 358 6 Ausgetrickst 616227
3334 358 358 7 Gänsehaut 743520

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