actress_aliases
3 rows where a_uid = "a_t365l"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| reikonakamori,a_t365l | Reiko Nakamori a_t365l | reikonakamori | Reiko Nakamori |
| なかもりれいこ,a_t365l | Reiko Nakamori a_t365l | なかもりれいこ | なかもりれいこ |
| 中森玲子,a_t365l | Reiko Nakamori a_t365l | 中森玲子 | 中森玲子 |
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);