product_variants
4 rows where product_id = "rhpnkscpzx"
This data as json, CSV (advanced)
| id ▼ | product_id | price | description | sort_order |
|---|---|---|---|---|
| 9451 | National pride Glamour rhpnkscpzx | 499.0 | Small | 1 |
| 9452 | National pride Glamour rhpnkscpzx | 650.0 | As Displayed | 2 |
| 9453 | National pride Glamour rhpnkscpzx | 950.0 | Large | 3 |
| 9454 | National pride Glamour rhpnkscpzx | 1290.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)
);