home / media

video_category

8 rows where v_uid = "v_gaohj"

This data as json, CSV (advanced)

Link v_uid c_uid
v_gaohj,c_0951h v_gaohj Hi-Def c_0951h
v_gaohj,c_5gkr4 v_gaohj Cherry Boy c_5gkr4
v_gaohj,c_98rqh v_gaohj Cowgirl c_98rqh
v_gaohj,c_kk2dm v_gaohj Over 4 Hours c_kk2dm
v_gaohj,c_mpe9j v_gaohj Exclusive Distribution c_mpe9j
v_gaohj,c_nouxx v_gaohj Creampie c_nouxx
v_gaohj,c_uhc9y v_gaohj Nymphomaniac c_uhc9y
v_gaohj,c_xrht4 v_gaohj College Girl c_xrht4

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