home / media

video_category

3 rows where c_uid = "c_2gf7c"

This data as json, CSV (advanced)

Link v_uid c_uid
v_3g3mv,c_2gf7c v_3g3mv Leotards c_2gf7c
v_i4c4x,c_2gf7c v_i4c4x Leotards c_2gf7c
v_so58a,c_2gf7c v_so58a Leotards c_2gf7c

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