video_category
5 rows where v_uid = "v_7flne"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_7flne,c_0951h | v_7flne | Hi-Def c_0951h |
| v_7flne,c_67w3t | v_7flne | Non-nude Erotica c_67w3t |
| v_7flne,c_ab63p | v_7flne | Sexy c_ab63p |
| v_7flne,c_dbas9 | v_7flne | Idol Video c_dbas9 |
| v_7flne,c_uagh4 | v_7flne | 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);