home / db

track

8 rows where mediumID = 63

✎ View and edit SQL

This data as json, CSV (advanced)

trackID ▼ mediumID position titel dauer
503 63 63 1 Ballkünstler unter sich 412613
504 63 63 2 Explosive Nachrichten 547787
505 63 63 3 Smell kauft Jimboy 388187
506 63 63 4 Eisiger Empfang in den Bergen 674960
507 63 63 5 Foul auf Bestellung 551040
508 63 63 6 Aktion Earphone 494946
509 63 63 7 Ein riskanter Bluff 255787
510 63 63 8 Cotta mischt mit 689147

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