Restaurant-Operations-Analysis

🍽️ Case Study – Taste of the World Café

SQL & Power BI Analysis by Gouri Parvathi

Hi! I’m Gouri Parvathi, and this is my analysis project for Taste of the World Café. The goal was to assess how customers responded to a newly launched menu and to better understand ordering patterns using SQL and Power BI.

📌 Contents

Introduction

In early 2024, Taste of the World Café introduced a revamped, globally inspired menu to spice up customer interest and boost revenue. The café sought to understand how well the new menu was performing, which dishes were gaining traction, and what ordering patterns could be uncovered.

With customer-level ordering data and item-level menu data available, this case study explores those trends using SQL and Power BI.

Problem Statement

Taste of the World Café wants to:

Table Structure

| Field | Description | |—————|————————————————–| | menu_item_id | Unique ID of a menu item | | item_name | Name of the menu item | | category | Cuisine or type of dish | | price | Price of the item in US Dollars ($) |

order_details Table

| Field | Description | |——————|————————————————–| | order_details_id | Unique ID of an item within an order | | order_id | Order reference ID | | order_date | Date of the order (MM/DD/YY) | | order_time | Time the order was placed (HH:MM:SS AM/PM) | | item_id | Foreign key matching menu_item_id from menu_items |

Entity Relationship Diagram

menu_items ←→ order_details
(1-to-many based on menu_item_id = item_id)

Case Study Objectives

1️⃣ Explore the Menu

2️⃣ Analyze Orders

3️⃣ Understand Customer Behavior

Insights And Recommendations

Key Findings:

📈 Business Recommendations:

File Structure

📦 Restaurant-Orders/ ┣ 📜 restaurant_orders_analysis.sql ┣ 📜 README.md ┣ 📂 data/ ┃ ┗ 📄 menu_items.csv ┃ ┗ 📄 order_details.csv ┣ 📂 dashboards/ ┃ ┗ 📄 restaurant_orders.pbix ┃ ┗ 📄 dashboard_screenshot1.png ┃ ┗ 📄 dashboard_screenshot2.png


Power BI Dashboard

I’ve also created an interactive dashboard to visualize insights like top dishes, sales trends, and high-value orders.

➡️ Download the Power BI Dashboard (.pbix)

Sneak Peek:

Dashboard Screenshot


Tools I Used