video_category
8 rows where v_uid = "v_vq895"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_vq895,c_0951h | v_vq895 | Hi-Def c_0951h |
| v_vq895,c_392vm | v_vq895 | 4K c_392vm |
| v_vq895,c_fqqg0 | v_vq895 | Eyes-Roll-Back, Fainting c_fqqg0 |
| v_vq895,c_jvx86 | v_vq895 | Massage Parlor c_jvx86 |
| v_vq895,c_mpe9j | v_vq895 | Exclusive Distribution c_mpe9j |
| v_vq895,c_plpyu | v_vq895 | Lotion c_plpyu |
| v_vq895,c_ry90w | v_vq895 | Massage c_ry90w |
| v_vq895,c_uagh4 | v_vq895 | Featured Actress c_uagh4 |
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);