home / media

video_director

4 rows where d_uid = "d_m82y5"

This data as json, CSV (advanced)

Link v_uid d_uid
v_788cx,d_m82y5 v_788cx Michiru Arashiyama d_m82y5
v_fxm7n,d_m82y5 v_fxm7n Michiru Arashiyama d_m82y5
v_jh3az,d_m82y5 v_jh3az Michiru Arashiyama d_m82y5
v_q46uh,d_m82y5 v_q46uh Michiru Arashiyama d_m82y5

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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);
Powered by Datasette · Queries took 2.709ms