home / db

track

5 rows where mediumID = 393

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3615 393 393 1 Autopanne im Central Valley 673840
3616 393 393 2 Schloss Blackstone 810707
3617 393 393 3 Der Schachgeist 530786
3618 393 393 4 Ein neuer Fall für die drei ??? 862040
3619 393 393 5 Rätselhafte Verse 506360

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