home / db

hörspielTeil

7 rows where hörspiel = 210

✎ View and edit SQL

This data as json, CSV (advanced)

teil ▼ hörspiel position buchstabe
211 210 210 1  
212 210 210 2  
213 210 210 3  
214 210 210 4  
215 210 210 5  
216 210 210 6  
217 210 210 7  

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