home / db

track

6 rows where mediumID = 296

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2730 296 296 1 Sie haben das Recht zu schweigen 371253
2731 296 296 2 Beschattung 799787
2732 296 296 3 Das Hochzeitsgeschenk 569573
2733 296 296 4 Unter Druck 352120
2734 296 296 5 Deconvulsan 1143134
2735 296 296 6 Hochzeitstag 693040

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