home / media

video_director

6 rows where d_uid = "d_7pel6"

This data as json, CSV (advanced)

Link v_uid d_uid
v_3eg23,d_7pel6 v_3eg23 Akira d_7pel6
v_cyxlv,d_7pel6 v_cyxlv Akira d_7pel6
v_oncws,d_7pel6 v_oncws Akira d_7pel6
v_rbwx7,d_7pel6 v_rbwx7 Akira d_7pel6
v_rl70e,d_7pel6 v_rl70e Akira d_7pel6
v_sgceb,d_7pel6 v_sgceb Akira d_7pel6

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