product_distributors
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where distributor_id = "DST_3AV1Y402M7N0"
This data as json, CSV (advanced)
| Link | product_id | distributor_id |
|---|---|---|
| PRD_1RYRA5H7NGN0,DST_3AV1Y402M7N0 | Volume 3 PRD_1RYRA5H7NGN0 | DST_3AV1Y402M7N0 |
| PRD_1ZF8NRK9HZM0,DST_3AV1Y402M7N0 | Volume 1 PRD_1ZF8NRK9HZM0 | DST_3AV1Y402M7N0 |
| PRD_3XMKE12EZYBG,DST_3AV1Y402M7N0 | Volume 2 PRD_3XMKE12EZYBG | DST_3AV1Y402M7N0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_distributors (
product_id TEXT NOT NULL,
distributor_id TEXT NOT NULL,
PRIMARY KEY (product_id, distributor_id),
FOREIGN KEY (product_id) REFERENCES products(id),
FOREIGN KEY (distributor_id) REFERENCES distributors(id)
);
CREATE INDEX idx_product_distributors_distributor ON product_distributors(distributor_id);