product_contributors
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
2 rows where product_id = "PRD_1AWVFCPDFK6G"
This data as json, CSV (advanced)
| Link | product_id | contributor_id | role | name_override |
|---|---|---|---|---|
| PRD_1AWVFCPDFK6G,CON_00KQMDFT98V0,1 | Millionaire's Calculated Baby Bid PRD_1AWVFCPDFK6G | LAURA WRIGHT CON_00KQMDFT98V0 | 1 | |
| PRD_1AWVFCPDFK6G,CON_1Y8G1C3ANAXG,2 | Millionaire's Calculated Baby Bid PRD_1AWVFCPDFK6G | HITOMI TSUKISE CON_1Y8G1C3ANAXG | 2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_contributors (
product_id TEXT NOT NULL,
contributor_id TEXT NOT NULL,
role INTEGER NOT NULL,
name_override TEXT,
PRIMARY KEY (product_id, contributor_id, role),
FOREIGN KEY (product_id) REFERENCES products(id),
FOREIGN KEY (contributor_id) REFERENCES contributors(id)
);
CREATE INDEX idx_product_contributors_contributor ON product_contributors(contributor_id);