video_category
3 rows where v_uid = "v_v4sij"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_v4sij,c_0j4bf | v_v4sij | Amateur c_0j4bf |
| v_v4sij,c_84j95 | v_v4sij | Other Fetishes c_84j95 |
| v_v4sij,c_j859j | v_v4sij | Vomit c_j859j |
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);