home / media

video_category

5 rows where v_uid = "v_e0ftr"

This data as json, CSV (advanced)

Link v_uid c_uid
v_e0ftr,c_2aoww v_e0ftr Sample Video c_2aoww
v_e0ftr,c_mta6q v_e0ftr Bondage c_mta6q
v_e0ftr,c_s5lxs v_e0ftr Married Woman c_s5lxs
v_e0ftr,c_uagh4 v_e0ftr Featured Actress c_uagh4
v_e0ftr,c_x9jyw v_e0ftr Drama c_x9jyw

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