home / shop

product_variants

Price variants/sizes for each product

3 rows where product_id = "ppycqy6n19"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ product_id price description sort_order
1152 Tulips Exclusive ppycqy6n19 559.0 Regular (30stems) 1
1153 Tulips Exclusive ppycqy6n19 749.0 Medium (ca 40 stems) 2
1154 Tulips Exclusive ppycqy6n19 1019.0 Big (ca 60 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 7.165ms