product_variants
3 rows where product_id = "j2wbliu25y"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 890 | Rød glede j2wbliu25y | 499.0 | Small (9 roser) | 1 |
| 891 | Rød glede j2wbliu25y | 799.0 | Medium (17 roser) | 2 |
| 892 | Rød glede j2wbliu25y | 1200.0 | Large (25 roser) | 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)
);