home / db

track

8 rows where mediumID = 323

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3048 323 323 1 Feueralarm 459533
3049 323 323 2 Ursachenforschung 529534
3050 323 323 3 Katzenrettung 626546
3051 323 323 4 Feuerteuel 712627
3052 323 323 5 Großeinsatz 671773
3053 323 323 6 Geldübergabe 488120
3054 323 323 7 Brandeinsatz 771560
3055 323 323 8 Wasser marsch! 510000

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