product_variants
3 rows where product_id = "ppycqy6n19"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 1152 | Tulips Exclusive ppycqy6n19 | 559.0 | Regular (30stems) | 1 |
| 1153 | Tulips Exclusive ppycqy6n19 | 749.0 | Medium (ca 40 stems) | 2 |
| 1154 | Tulips Exclusive ppycqy6n19 | 1019.0 | Big (ca 60 stems) | 3 |
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)
);