video_category
2 rows where c_uid = "c_v09bi"
This data as json, CSV (advanced)
| Link | v_uid | c_uid |
|---|---|---|
| v_6we8j,c_v09bi | v_6we8j | Serious c_v09bi |
| v_i2ruh,c_v09bi | v_i2ruh | Serious c_v09bi |
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);