home / db

track

6 rows where mediumID = 398

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3674 398 398 1 Die Gestalt im Gewitter 551427
3675 398 398 2 Die silberne Kobra 791946
3676 398 398 3 Die drei Verdächtigen 571680
3677 398 398 4 Mieses Verhalten 1060014
3678 398 398 5 Das Versteck 518746
3679 398 398 6 Das unsichtbare Fenster 633707

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