actress_aliases
3 rows where a_uid = "a_ae1tw"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| ruimiura,a_ae1tw | Rui Miura a_ae1tw | ruimiura | Rui Miura |
| みうらるい,a_ae1tw | Rui Miura a_ae1tw | みうらるい | みうらるい |
| 三浦るい,a_ae1tw | Rui Miura a_ae1tw | 三浦るい | 三浦るい |
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);