home / media

video_director

1 row where v_uid = "v_f0so8"

This data as json, CSV (advanced)

Link v_uid d_uid
v_f0so8,d_ols9j v_f0so8 Company MatsuO d_ols9j

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.122ms