video_category
7 rows where v_uid = "v_scdpe"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_scdpe,c_0951h | v_scdpe | Hi-Def c_0951h |
| v_scdpe,c_ihjo9 | v_scdpe | Orgy c_ihjo9 |
| v_scdpe,c_km6ib | v_scdpe | Deep Throat c_km6ib |
| v_scdpe,c_nouxx | v_scdpe | Creampie c_nouxx |
| v_scdpe,c_uagh4 | v_scdpe | Featured Actress c_uagh4 |
| v_scdpe,c_uhc9y | v_scdpe | Nymphomaniac c_uhc9y |
| v_scdpe,c_wrja8 | v_scdpe | M-jo c_wrja8 |
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);