home / db

hörspielTeil

6 rows where hörspiel = 234

✎ View and edit SQL

This data as json, CSV (advanced)

teil ▼ hörspiel position buchstabe
235 234 234 1  
236 234 234 2  
237 234 234 3  
238 234 234 4  
239 234 234 5  
240 234 234 6  

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