home / db

track

8 rows where mediumID = 386

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3561 386 386 1 Alles einsteigen! 404880
3562 386 386 2 Enthüllung 659573
3563 386 386 3 Schuldgefühle 643347
3564 386 386 4 Spur ins Nichts 694107
3565 386 386 5 Künstliche Intelligenz 684293
3566 386 386 6 Im Untergrund 545613
3567 386 386 7 Sesam, öffne dich! 448534
3568 386 386 8 Auf der Flucht 665466

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