product_variants
4 rows where product_id = "kekc4svq7h"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 665 | Nasjonalsdag Dekor kekc4svq7h | 450.0 | Som vist | 1 |
| 666 | Nasjonalsdag Dekor kekc4svq7h | 650.0 | Medium | 2 |
| 667 | Nasjonalsdag Dekor kekc4svq7h | 850.0 | Stor | 3 |
| 668 | Nasjonalsdag Dekor kekc4svq7h | 1200.0 | XL | 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)
);