home / db

track

8 rows where mediumID = 49

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
391 49 49 1 Großer Qualm – kleines Feuer 363133
392 49 49 2 Spannendes aus der Szene 304480
393 49 49 3 Kunst und Kommerz 419054
394 49 49 4 Das interstellare Interview 246373
395 49 49 5 Getäuscht 286453
396 49 49 6 Handzeichen 414054
397 49 49 7 Schwarze Kunst im Keller 384893
398 49 49 8 Hart erkämpfter Sieg 251680

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