This project analyzes a pizza sales dataset using SQL to uncover key business insights.
The analysis covers sales performance, revenue generation, ordering patterns, and product popularity.
The dataset consists of 4 CSV files:
- π§Ύ orders.csv β order_id, order_date, order_time
- π order_details.csv β order_id, pizza_id, quantity
- π pizzas.csv β pizza_id, pizza_type_id, size, price
- π§ pizza_types.csv β pizza_type_id, name, category, ingredients
- SQL Concepts: Joins, Aggregations, Grouping, Ordering, Window Functions, Subqueries, CTEs
- Tools: MySQL Workbench (for querying), Canva (for presentation)
Basic: total orders, revenue, highest-priced pizza, most common size, top 5 pizzas
Intermediate: category quantities, hourly order distribution, avg pizzas/day, top 3 pizzas by revenue
Advanced: % revenue by pizza, cumulative revenue, top 3 by revenue per category
- Certain pizza types & sizes dominate sales and revenue
- Orders peak during specific hours, reflecting customer behavior
- Some categories consistently outperform others in both quantity and revenue
- SQL-driven insights help optimize menu, pricing, and inventory planning