home / db

track

6 rows where mediumID = 88

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
683 88 88 1 Per E-Mail 609920
684 88 88 2 Intro 666240
685 88 88 3 Level 1 770920
686 88 88 4 Level 2 652787
687 88 88 5 Level 3 938213
688 88 88 6 Level 4 858427

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