home / db

track

8 rows where mediumID = 282

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
2611 282 282 1 Der Countdown läuft 688360
2612 282 282 2 Tatort Rocky Beach 760707
2613 282 282 3 Das Messer 417813
2614 282 282 4 Ein alter Freund erinnert sich 416693
2615 282 282 5 Gefährlicher Einbrecher 427760
2616 282 282 6 Gefahr im Mondschein 434640
2617 282 282 7 Geliebtes Sammlerobjekt 381027
2618 282 282 8 Showtime 845133

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