product_variants
4 rows where product_id = "jfurixw811"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 9565 | Pink Deluxe jfurixw811 | 669.0 | Standard (ca 9 roses) | 1 |
| 9566 | Pink Deluxe jfurixw811 | 969.0 | Medium (ca 12 roses) | 2 |
| 9567 | Pink Deluxe jfurixw811 | 1400.0 | Large (ca 20 roses) | 3 |
| 9568 | Pink Deluxe jfurixw811 | 2999.0 | As Displayed (ca 35 roses) | 4 |
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)
);