item_prices
Data license: MIT · Data source: Starbucks Singapore · About: Made by jerrynsh.com
14 rows where effective_date = "2024-11-10" and store_id = 21
This data as json, CSV (advanced)
Suggested facets: base_price, delivery_price, effective_date (date)
id ▼ | item_id | store_id | base_price | delivery_price | effective_date |
---|---|---|---|---|---|
34090 | Origami Christmas Blend 33379 | 21 21 | 1090 | 1140 | 2024-11-10 |
34091 | VIA® Christmas 33380 | 21 21 | 1690 | 1740 | 2024-11-10 |
34092 | Christmas Blend 33381 | 21 21 | 1690 | 1740 | 2024-11-10 |
34093 | Christmas Blonde Roast Blend 33382 | 21 21 | 1690 | 1740 | 2024-11-10 |
34094 | Christmas Espresso Roast Blend 33383 | 21 21 | 1690 | 1740 | 2024-11-10 |
34095 | VIA® Peppermint Mocha 33384 | 21 21 | 790 | 840 | 2024-11-10 |
34096 | Chocolate Hazelnut Praline Cake 33385 | 21 21 | 820 | 870 | 2024-11-10 |
34097 | Beef & Mushroom Shepherd's Pie 33386 | 21 21 | 780 | 830 | 2024-11-10 |
34098 | Teavana™ Joyful Medley 33387 | 21 21 | 1690 | 1740 | 2024-11-10 |
34099 | Peppermint Cheesecake Brownie 33388 | 21 21 | 820 | 870 | 2024-11-10 |
34100 | Salted Butterscotch Cake 33389 | 21 21 | 820 | 870 | 2024-11-10 |
34101 | Butter Madeleine 33390 | 21 21 | 350 | 400 | 2024-11-10 |
34102 | Chocolate Hazelnut Madeleine 33391 | 21 21 | 350 | 400 | 2024-11-10 |
34103 | Truffle Turkey Ham Mac & Cheese Pie 33392 | 21 21 | 780 | 830 | 2024-11-10 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "item_prices" ("id" INTEGER NOT NULL PRIMARY KEY, "item_id" INTEGER NOT NULL, "store_id" INTEGER NOT NULL, "base_price" INTEGER NOT NULL, "delivery_price" INTEGER NOT NULL, "effective_date" DATE NOT NULL, FOREIGN KEY ("item_id") REFERENCES "menu_items" ("id"), FOREIGN KEY ("store_id") REFERENCES "stores" ("id")); CREATE INDEX "price_item_id" ON "item_prices" ("item_id"); CREATE INDEX "price_store_id" ON "item_prices" ("store_id"); CREATE UNIQUE INDEX "price_item_id_store_id_effective_date" ON "item_prices" ("item_id", "store_id", "effective_date");