home / shop

product_variants

Price variants/sizes for each product

3 rows where product_id = "lgqpp0lvui"

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ product_id price description sort_order
9238 Ida Amore lgqpp0lvui 690.0 Small (ca 7 pcs) 1
9239 Ida Amore lgqpp0lvui 1215.0 Medium ca 12 roses 2
9240 Ida Amore lgqpp0lvui 2100.0 As Display (ca 18 roses) 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.309ms