product_categories
2 rows where product_id = "68654sd81v"
This data as json, CSV (advanced)
| Link | product_id | category_id |
|---|---|---|
| 68654sd81v,68 | The Perfect Tea Basket 68654sd81v | Gifts 68 |
| 68654sd81v,96 | The Perfect Tea Basket 68654sd81v | Corporate Solutions 96 |
Advanced export
JSON shape: default, array, newline-delimited, object
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)
);