home / db

track

9 rows where mediumID = 211

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2076 211 211 1 Kleinkriminelle mit Größenwahn 410853
2077 211 211 2 Ein tragischer Unfall 149800
2078 211 211 3 Party-Time 423387
2079 211 211 4 Im Keller 174747
2080 211 211 5 Quaesitio 116373
2081 211 211 6 Lailaps 512973
2082 211 211 7 Angriff in der Nacht 342227
2083 211 211 8 Tödliches Gift 699760
2084 211 211 9 Verräterischer Duft 604080

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