home / db

spricht

6 rows where personID = 1000

✎ View and edit SQL

This data as json, CSV (advanced)

Link sprechrolleID personID pseudonymID position
4129,1000 4129 4129 Oliver Schmitz 1000   1
4276,1000 4276 4276 Oliver Schmitz 1000   1
4368,1000 4368 4368 Oliver Schmitz 1000   1
4751,1000 4751 4751 Oliver Schmitz 1000   1
4947,1000 4947 4947 Oliver Schmitz 1000   1
5117,1000 5117 5117 Oliver Schmitz 1000   1

Advanced export

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

CSV options:

CREATE TABLE "spricht"(
  "sprechrolleID" INTEGER NOT NULL REFERENCES "sprechrolle"("sprechrolleID") ON DELETE CASCADE ON UPDATE CASCADE,
  "personID" INTEGER NOT NULL REFERENCES "person"("personID") ON DELETE CASCADE ON UPDATE CASCADE,
  "pseudonymID" INTEGER REFERENCES "pseudonym"("pseudonymID") ON DELETE SET NULL ON UPDATE CASCADE,
  "position" INTEGER NOT NULL CHECK("position" > 0),
  PRIMARY KEY("sprechrolleID", "personID"),
  UNIQUE("sprechrolleID", "position")
);
Powered by Datasette · Queries took 11.351ms