actress_aliases
3 rows where a_uid = "a_f9xor"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| kahohanamori,a_f9xor | Kaho Hanamori a_f9xor | kahohanamori | Kaho Hanamori |
| はなもりかほ,a_f9xor | Kaho Hanamori a_f9xor | はなもりかほ | はなもりかほ |
| 花守夏歩,a_f9xor | Kaho Hanamori a_f9xor | 花守夏歩 | 花守夏歩 |
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);