actress_aliases
3 rows where a_uid = "a_3sby8"
This data as json, CSV (advanced)
| Link | a_uid | aliasKey | alias |
|---|---|---|---|
| ayameenomoto,a_3sby8 | Ayame Enomoto a_3sby8 | ayameenomoto | Ayame Enomoto |
| えのもとあやめ,a_3sby8 | Ayame Enomoto a_3sby8 | えのもとあやめ | えのもとあやめ |
| 榎本あやめ,a_3sby8 | Ayame Enomoto a_3sby8 | 榎本あやめ | 榎本あやめ |
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);