item_prices
Data license: MIT · Data source: Starbucks Singapore · About: Made by jerrynsh.com
5 rows where effective_date = "2024-07-28" and store_id = 11
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 |
---|---|---|---|---|---|
28119 | Voyage Blend 27551 | 11 11 | 1690 | 1740 | 2024-07-28 |
28120 | Pandan Fantasy 27552 | 11 11 | 850 | 900 | 2024-07-28 |
28121 | Iced Pandan Fantasy 27553 | 11 11 | 850 | 900 | 2024-07-28 |
28122 | Egg Mayo Sandwich 27554 | 11 11 | 720 | 770 | 2024-07-28 |
28123 | Honey Chicken Wholemeal Sandwich 27555 | 11 11 | 720 | 770 | 2024-07-28 |
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");