home / db

track

6 rows where mediumID = 400

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
3687 400 400 1 Das Geistertelefon 542840
3688 400 400 2 Fogmire House 766933
3689 400 400 3 Gefahr in der Nacht 639960
3690 400 400 4 Neue Spuren 878360
3691 400 400 5 Volt und Ampere 868414
3692 400 400 6 Das Fantasmofon 1194733

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 6.154ms