video_director
1 row where d_uid = "d_lolc4"
This data as json, CSV (advanced)
| Link | v_uid | d_uid |
|---|---|---|
| v_qo1q6,d_lolc4 | v_qo1q6 | Jun Nagasawa d_lolc4 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE video_director ( v_uid TEXT NOT NULL REFERENCES videos(uid) ON DELETE CASCADE, d_uid TEXT NOT NULL REFERENCES directors(uid) ON DELETE CASCADE, PRIMARY KEY (v_uid, d_uid) ); CREATE INDEX idx_video_director_d ON video_director(d_uid);