home / shop

product_variants

Price variants/sizes for each product

3 rows where product_id = "xi1iwix2km"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ product_id price description sort_order
3054 Lily Delight xi1iwix2km 300.0 Regular (6 stems) 1
3055 Lily Delight xi1iwix2km 450.0 As displayed (9 stems) 2
3056 Lily Delight xi1iwix2km 750.0 Large (15 stems) 3

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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)
);
Powered by Datasette · Queries took 5.722ms