product_variants
2 rows where product_id = "9o946e3pff"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 9585 | Pink Sand 9o946e3pff | 999.0 | Regular ca 12 roses | 1 |
| 9586 | Pink Sand 9o946e3pff | 1350.0 | As displayed (20 stems) | 2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_variants (
id INTEGER PRIMARY KEY AUTOINCREMENT,
product_id TEXT NOT NULL,
price REAL,
description TEXT,
sort_order INTEGER,
FOREIGN KEY (product_id) REFERENCES products(id),
UNIQUE(product_id, sort_order)
);