home / media

video_category

6 rows where v_uid = "v_7af97"

This data as json, CSV (advanced)

Link v_uid c_uid
v_7af97,c_98rqh v_7af97 Cowgirl c_98rqh
v_7af97,c_ee209 v_7af97 69 c_ee209
v_7af97,c_gv9yw v_7af97 Ropes & Ties c_gv9yw
v_7af97,c_llfzk v_7af97 KIMONO c_llfzk
v_7af97,c_uagh4 v_7af97 Featured Actress c_uagh4
v_7af97,c_w1aps v_7af97 Club Hostess & Sex Worker c_w1aps

Advanced export

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

CSV options:

CREATE TABLE video_category (
  v_uid TEXT NOT NULL REFERENCES videos(uid)     ON DELETE CASCADE,
  c_uid TEXT NOT NULL REFERENCES categories(uid) ON DELETE CASCADE,
  PRIMARY KEY (v_uid, c_uid)
);
CREATE INDEX idx_video_category_c ON video_category(c_uid);
Powered by Datasette · Queries took 2.874ms