video_category
1 row where c_uid = "c_qb12l"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_o9j94,c_qb12l | v_o9j94 | Club Manager c_qb12l |
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);