Restaurant Menu Items
Analyze Different Restaurants Menu Items
@kaggle.pranalibose_restaurant
Analyze Different Restaurants Menu Items
@kaggle.pranalibose_restaurant
The dataset has menu items price for around 100 restaurants.
| Column | Description |
|---|---|
| Restaurant | Name of the Restaurant |
| Section | Food Item Section |
| Item | Food Item Name |
| Description | Description of the Food Item |
| Price | Cost of the Food Item |
CREATE TABLE menu_items (
"restaurant" VARCHAR,
"section" VARCHAR,
"item" VARCHAR,
"description" VARCHAR,
"price" VARCHAR
);Anyone who has the link will be able to view this.