home / media

video_label

4 rows where v_uid = "v_4veto"

This data as json, CSV (advanced)

Link v_uid l_uid
v_4veto,l_2mjl1 v_4veto IDOL l_2mjl1
v_4veto,l_9hx0t v_4veto 1080p l_9hx0t
v_4veto,l_9z20f v_4veto hd l_9z20f
v_4veto,l_eb12i v_4veto jav l_eb12i

Advanced export

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

CSV options:

CREATE TABLE video_label (
  v_uid TEXT NOT NULL REFERENCES videos(uid) ON DELETE CASCADE,
  l_uid TEXT NOT NULL REFERENCES labels(uid) ON DELETE CASCADE,
  PRIMARY KEY (v_uid, l_uid)
);
CREATE INDEX idx_video_label_l ON video_label(l_uid);
Powered by Datasette · Queries took 2.114ms