video_category
7 rows where v_uid = "v_qz1lf"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_qz1lf,c_0951h | v_qz1lf | Hi-Def c_0951h |
| v_qz1lf,c_2usm9 | v_qz1lf | Threesome / Foursome c_2usm9 |
| v_qz1lf,c_392vm | v_qz1lf | 4K c_392vm |
| v_qz1lf,c_3kwuh | v_qz1lf | Employee/Coworker c_3kwuh |
| v_qz1lf,c_l1paj | v_qz1lf | Office Lady c_l1paj |
| v_qz1lf,c_uagh4 | v_qz1lf | Featured Actress c_uagh4 |
| v_qz1lf,c_x9jyw | v_qz1lf | Drama c_x9jyw |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE video_category ( v_uid TEXT NOT NULL REFERENCES videos(uid) ON DELETE CASCADE, c_uid TEXT NOT NULL REFERENCES categories(uid) ON DELETE CASCADE, PRIMARY KEY (v_uid, c_uid) ); CREATE INDEX idx_video_category_c ON video_category(c_uid);