video_category
6 rows where v_uid = "v_hsgab"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_hsgab,c_0951h | v_hsgab | Hi-Def c_0951h |
| v_hsgab,c_2usm9 | v_hsgab | Threesome / Foursome c_2usm9 |
| v_hsgab,c_34i8d | v_hsgab | Cheating Wife c_34i8d |
| v_hsgab,c_uagh4 | v_hsgab | Featured Actress c_uagh4 |
| v_hsgab,c_x9jyw | v_hsgab | Drama c_x9jyw |
| v_hsgab,c_xi69m | v_hsgab | 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);