home / db

track

10 rows where mediumID = 203

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
1993 203 203 1 Prinzessin 744000
1994 203 203 2 Cotta ist bedient 345880
1995 203 203 3 Die erste Spur 276213
1996 203 203 4 Merkwürdiger Fluchtweg 836730
1997 203 203 5 Auf dem Holzweg 513094
1998 203 203 6 Eine unglaubliche Entdeckung 367400
1999 203 203 7 Der Deal 566493
2000 203 203 8 Bis zum letzten Atemzug 345173
2001 203 203 9 Rache aus dem Grab 292400
2002 203 203 10 Justus ist nicht nett 388590

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