product_variants
4 rows where product_id = "qrmdrcthjr"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 9918 | Tulip Multimix qrmdrcthjr | 535.0 | ca 30 pcs | 1 |
| 9919 | Tulip Multimix qrmdrcthjr | 799.0 | ca 45 pcs | 2 |
| 9920 | Tulip Multimix qrmdrcthjr | 1075.0 | ca 60 pcs | 3 |
| 9921 | Tulip Multimix qrmdrcthjr | 1612.0 | Ca 90 pcs | 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)
);