home / db

hörspielTeil

3 rows where hörspiel = 100

✎ View and edit SQL

This data as json, CSV (advanced)

teil ▼ hörspiel position buchstabe
101 100 100 1 A
102 100 100 2 B
103 100 100 3 C

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "hörspielTeil"(
  "teil" INTEGER PRIMARY KEY NOT NULL REFERENCES "hörspiel"("hörspielID") ON DELETE CASCADE ON UPDATE CASCADE,
  "hörspiel" INTEGER NOT NULL REFERENCES "hörspiel"("hörspielID") ON DELETE CASCADE ON UPDATE CASCADE,
  "position" INTEGER NOT NULL CHECK("position" > 0),
  "buchstabe" TEXT CHECK(LENGTH("buchstabe") = 1),
  UNIQUE("hörspiel", "position"),
  UNIQUE("hörspiel", "buchstabe"),
  CHECK("teil" != "hörspiel")
);
Powered by Datasette · Queries took 6.091ms