home / db

spricht

7 rows where personID = 41

✎ View and edit SQL

This data as json, CSV (advanced)

Link sprechrolleID personID pseudonymID position
93,41 93 93 Reinhilt Schneider 41   1
197,41 197 197 Reinhilt Schneider 41   1
868,41 868 868 Reinhilt Schneider 41   1
882,41 882 882 Reinhilt Schneider 41   1
1252,41 1252 1252 Reinhilt Schneider 41   1
2200,41 2200 2200 Reinhilt Schneider 41   1
2978,41 2978 2978 Reinhilt Schneider 41   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 12.114ms