home / shop

product_variants

Price variants/sizes for each product

8 rows where product_id = "xzvo6e8vsp"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ product_id price description sort_order
3297 Pink Mondial xzvo6e8vsp 450.0 (ca 10 stk) 1
3298 Pink Mondial xzvo6e8vsp 45.0 each 2
3299 Pink Mondial xzvo6e8vsp 670.0 (15 stems) 3
3300 Pink Mondial xzvo6e8vsp 880.0 (20 stems) 4
3301 Pink Mondial xzvo6e8vsp 1110.0 (25 stems) 5
3302 Pink Mondial xzvo6e8vsp 1330.0 (30 stems) 6
3303 Pink Mondial xzvo6e8vsp 1770.0 (40 stems) 7
3304 Pink Mondial xzvo6e8vsp 2200.0 (50 stems) 8

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 15.875ms