product_variants
5 rows where product_id = "jfurixw811"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 3288 | Pink Deluxe jfurixw811 | 669.0 | Standard (9 roses) | 1 |
| 3289 | Pink Deluxe jfurixw811 | 969.0 | Medium (ca 12 roses) | 2 |
| 3290 | Pink Deluxe jfurixw811 | 1400.0 | Large (ca 20 roses) | 3 |
| 3291 | Pink Deluxe jfurixw811 | 2999.0 | As Displayed (ca 35 roses) | 4 |
| 3292 | Pink Deluxe jfurixw811 | 3500.0 | XL Incl. Large Vase | 5 |
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)
);