home / media

video_star

5 rows where v_uid = "v_sc1ai"

This data as json, CSV (advanced)

Link v_uid a_uid
v_sc1ai,a_2q1oo v_sc1ai Nene Tanaka a_2q1oo
v_sc1ai,a_823kr v_sc1ai Yuzuki Sera a_823kr
v_sc1ai,a_fhs3i v_sc1ai Tsukimiya Nene a_fhs3i
v_sc1ai,a_fn715 v_sc1ai Kanzaki Hikaru a_fn715
v_sc1ai,a_su73u v_sc1ai Maeda Iroha a_su73u

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 2.854ms