product_variants
2 rows where product_id = "j3ma9v9rkm"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 2671 | Classic beauty j3ma9v9rkm | 990.0 | Regular (12 roses) | 1 |
| 2672 | Classic beauty j3ma9v9rkm | 1390.0 | Medium (18 roses) | 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)
);