video_category
7 rows where v_uid = "v_1u8o1"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_1u8o1,c_0951h | v_1u8o1 | Hi-Def c_0951h |
| v_1u8o1,c_14t2x | v_1u8o1 | Digital Mosaic c_14t2x |
| v_1u8o1,c_84j95 | v_1u8o1 | Other Fetishes c_84j95 |
| v_1u8o1,c_a399n | v_1u8o1 | Slut c_a399n |
| v_1u8o1,c_mpe9j | v_1u8o1 | Exclusive Distribution c_mpe9j |
| v_1u8o1,c_uagh4 | v_1u8o1 | Featured Actress c_uagh4 |
| v_1u8o1,c_xi69m | v_1u8o1 | Young Wife c_xi69m |
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);