home / media

video_star

3 rows where v_uid = "v_ctmr7"

This data as json, CSV (advanced)

Link v_uid a_uid
v_ctmr7,a_bx6t5 v_ctmr7 Niimura Akari a_bx6t5
v_ctmr7,a_qn7tm v_ctmr7 Hoshino Mami a_qn7tm
v_ctmr7,a_sc1g6 v_ctmr7 Miyamu a_sc1g6

Advanced export

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

CSV options:

CREATE TABLE video_star (
  v_uid TEXT NOT NULL REFERENCES videos(uid)    ON DELETE CASCADE,
  a_uid TEXT NOT NULL REFERENCES actresses(uid) ON DELETE CASCADE,
  PRIMARY KEY (v_uid, a_uid)
);
CREATE INDEX idx_video_star_a ON video_star(a_uid);
Powered by Datasette · Queries took 3.033ms