home / shop

product_variants

Price variants/sizes for each product

5 rows where product_id = "ckvjcljiur"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ product_id price description sort_order
8978 Deep Purple and White ckvjcljiur 435.0 Small (ca 7 Roses) 1
8979 Deep Purple and White ckvjcljiur 750.0 Regular (ca 12 Roses) 2
8980 Deep Purple and White ckvjcljiur 850.0 Medium (ca 15 Roses) 3
8981 Deep Purple and White ckvjcljiur 1299.0 Large (ca 20 Roses) 4
8982 Deep Purple and White ckvjcljiur 1500.0 Deluxe (ca 25 Roses) 5

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.526ms