actress_aliases
3 rows where a_uid = "a_4p2gy"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| meimanase,a_4p2gy | Mei Manase a_4p2gy | meimanase | Mei Manase |
| まなせめい,a_4p2gy | Mei Manase a_4p2gy | まなせめい | まなせめい |
| 愛瀬めい,a_4p2gy | Mei Manase a_4p2gy | 愛瀬めい | 愛瀬めい |
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);