product_variants
5 rows where product_id = "2u8580zwc5"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 3421 | Rosa Deluxe 2u8580zwc5 | 550.0 | standard | 1 |
| 3422 | Rosa Deluxe 2u8580zwc5 | 900.0 | medium | 2 |
| 3423 | Rosa Deluxe 2u8580zwc5 | 1400.0 | large | 3 |
| 3424 | Rosa Deluxe 2u8580zwc5 | 2100.0 | Som vist | 4 |
| 3425 | Rosa Deluxe 2u8580zwc5 | 2400.0 | Stor (med 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)
);