product_variants
4 rows where product_id = "h3tgjdxudc"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 9092 | Floral Jewel h3tgjdxudc | 525.0 | Small (ca 9 roses) | 1 |
| 9093 | Floral Jewel h3tgjdxudc | 730.0 | Medium (ca 12 roses) | 2 |
| 9094 | Floral Jewel h3tgjdxudc | 1380.0 | As Display (ca 23 roses) | 3 |
| 9095 | Floral Jewel h3tgjdxudc | 1799.0 | Large ca 30 roses | 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)
);