home / db

hörspielTeil

12 rows where hörspiel = 186

✎ View and edit SQL

This data as json, CSV (advanced)

teil ▼ hörspiel position buchstabe
187 186 186 1  
188 186 186 2  
189 186 186 3  
190 186 186 4  
191 186 186 5  
192 186 186 6  
193 186 186 7  
194 186 186 8  
195 186 186 9  
196 186 186 10  
197 186 186 11  
198 186 186 12  

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