actress_aliases
4 rows where a_uid = "a_flpm8"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| honmayuri,a_flpm8 | Yuri Honma a_flpm8 | honmayuri | Honma Yuri |
| yurihonma,a_flpm8 | Yuri Honma a_flpm8 | yurihonma | Yuri Honma |
| ほんまゆり,a_flpm8 | Yuri Honma a_flpm8 | ほんまゆり | ほんまゆり |
| 本真ゆり,a_flpm8 | Yuri Honma a_flpm8 | 本真ゆり | 本真ゆり |
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);