home / shop

product_categories

Many-to-many link between products and categories

6 rows where product_id = "r0zvwcv0sr"

✎ View and edit SQL

This data as json, CSV (advanced)

Link product_id category_id
r0zvwcv0sr,9 Peach Wreath r0zvwcv0sr Homepage Specials 9
r0zvwcv0sr,15 Peach Wreath r0zvwcv0sr Funerals 15
r0zvwcv0sr,16 Peach Wreath r0zvwcv0sr Summer 16
r0zvwcv0sr,22 Peach Wreath r0zvwcv0sr Wreath Decoration 22
r0zvwcv0sr,53 Peach Wreath r0zvwcv0sr Spring 53
r0zvwcv0sr,77 Peach Wreath r0zvwcv0sr Homepage No 77

Advanced export

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

CSV options:

CREATE TABLE product_categories (
    product_id TEXT NOT NULL,
    category_id INTEGER NOT NULL,
    PRIMARY KEY (product_id, category_id),
    FOREIGN KEY (product_id) REFERENCES products(id),
    FOREIGN KEY (category_id) REFERENCES categories(id)
);
Powered by Datasette · Queries took 6.971ms