home / db

track

8 rows where mediumID = 103

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
781 103 103 1 Stromstoß 582613
782 103 103 2 Der allerneueste Schrei 280787
783 103 103 3 Teuflische SMS 536693
784 103 103 4 Blutige Finger 487000
785 103 103 5 Abgrundtiefe Stimme 507774
786 103 103 6 Verfluchtes Handy 501026
787 103 103 7 Monique Carrera 550147
788 103 103 8 Hokus-Pokus 867413

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