home / db

hörspielTeil

6 rows where hörspiel = 260

✎ View and edit SQL

This data as json, CSV (advanced)

teil ▼ hörspiel position buchstabe
261 260 260 1  
262 260 260 2  
263 260 260 3  
264 260 260 4  
265 260 260 5  
266 260 260 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.528ms