actress_aliases
3 rows where a_uid = "a_rqdfq"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| koharu,a_rqdfq | Koharu a_rqdfq | koharu | Koharu |
| こはる,a_rqdfq | Koharu a_rqdfq | こはる | こはる |
| 小春,a_rqdfq | Koharu a_rqdfq | 小春 | 小春 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE actress_aliases ( a_uid TEXT NOT NULL REFERENCES actresses(uid) ON DELETE CASCADE, aliasKey TEXT NOT NULL, alias TEXT NOT NULL, PRIMARY KEY (aliasKey, a_uid) ); CREATE INDEX idx_actress_aliases_uid ON actress_aliases(a_uid);