video_category
5 rows where v_uid = "v_4mtz4"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_4mtz4,c_0951h | v_4mtz4 | Hi-Def c_0951h |
| v_4mtz4,c_0j4bf | v_4mtz4 | Amateur c_0j4bf |
| v_4mtz4,c_i74is | v_4mtz4 | Cunnilingus c_i74is |
| v_4mtz4,c_mpe9j | v_4mtz4 | Exclusive Distribution c_mpe9j |
| v_4mtz4,c_nouxx | v_4mtz4 | Creampie c_nouxx |
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);