home / media

video_category

5 rows where c_uid = "c_dddyt"

This data as json, CSV (advanced)

Link v_uid c_uid
v_3eg23,c_dddyt v_3eg23 Youthful c_dddyt
v_fh8ly,c_dddyt v_fh8ly Youthful c_dddyt
v_i0zf8,c_dddyt v_i0zf8 Youthful c_dddyt
v_kx95n,c_dddyt v_kx95n Youthful c_dddyt
v_qoivk,c_dddyt v_qoivk Youthful c_dddyt

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