home / db

track

9 rows where mediumID = 365

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3384 365 365 1 Endlich Ferien! 464413
3385 365 365 2 Auf der Flucht 509040
3386 365 365 3 Beim Tierarzt 522880
3387 365 365 4 Eiszeit 453027
3388 365 365 5 Bootsfahrt 510027
3389 365 365 6 Miss Medusa 597893
3390 365 365 7 Hollywood 411053
3391 365 365 8 Applaus, Applaus! 398947
3392 365 365 9 Spezialeinheit 477213

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