spricht
2 rows where personID = 98
This data as json, CSV (advanced)
| Link | sprechrolleID | personID | pseudonymID | position |
|---|---|---|---|---|
| 389,98 | 389 389 | Hubert Mittendorf 98 | 1 | |
| 401,98 | 401 401 | Hubert Mittendorf 98 | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
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")
);