video_category
4 rows where v_uid = "v_geiwx"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_geiwx,c_0951h | v_geiwx | Hi-Def c_0951h |
| v_geiwx,c_0j4bf | v_geiwx | Amateur c_0j4bf |
| v_geiwx,c_0tc2g | v_geiwx | Variety c_0tc2g |
| v_geiwx,c_r89kb | v_geiwx | Substance Use c_r89kb |
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);