video_category
8 rows where v_uid = "v_2ef04"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_2ef04,c_0951h | v_2ef04 | Hi-Def c_0951h |
| v_2ef04,c_14t2x | v_2ef04 | Digital Mosaic c_14t2x |
| v_2ef04,c_3wtcv | v_2ef04 | Various Worker c_3wtcv |
| v_2ef04,c_hczp2 | v_2ef04 | Urination c_hczp2 |
| v_2ef04,c_l1paj | v_2ef04 | Office Lady c_l1paj |
| v_2ef04,c_md9s7 | v_2ef04 | Embarrassment c_md9s7 |
| v_2ef04,c_mpe9j | v_2ef04 | Exclusive Distribution c_mpe9j |
| v_2ef04,c_uswe2 | v_2ef04 | Shame c_uswe2 |
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);