Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shrutiijoshi/restaurant-order-analysis
Analyze order data to identify the most and least popular menu items and types of cuisine
https://github.com/shrutiijoshi/restaurant-order-analysis
analytics data-analysis mysql sql
Last synced: 21 days ago
JSON representation
Analyze order data to identify the most and least popular menu items and types of cuisine
- Host: GitHub
- URL: https://github.com/shrutiijoshi/restaurant-order-analysis
- Owner: Shrutiijoshi
- Created: 2025-01-04T05:28:48.000Z (26 days ago)
- Default Branch: main
- Last Pushed: 2025-01-04T05:53:49.000Z (26 days ago)
- Last Synced: 2025-01-04T06:23:40.517Z (26 days ago)
- Topics: analytics, data-analysis, mysql, sql
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Restaurant-Order-Analysis
Analyze order data to identify the most and least popular menu items and types of cuisine# International Restaurant Orders Data Analysis
## Project Overview :
A quarter's worth of orders from a fictitious restaurant serving international cuisine, including the date and time of each order, the items ordered, and additional details on the type, name and price of the items.The Restaurant Orders Dataset provides detailed insights into customer ordering behavior, sales trends, and restaurant performance. By analyzing this dataset, valuable information can be derived to support decision-making in restaurant management, marketing strategies, and menu optimization.## Data Content :
### 1. Order_Details table :
- order_details_id : Unique ID of an item in an order
- order_id : ID of an order
- order_date : Date an order was put in (MM/DD/YY)
- order_time : Time an order was put in (HH:MM:SS AM/PM)
- item_id : Matches the menu_item_id in the menu_items table### 2. Menu_items table :
- menu_item_id : Unique ID of a menu item
- item_name : Name of a menu item
- category : Category or type of cuisine of the menu item
- price : Price of the menu item (US Dollars $)## Project Objectives :
**Least and most ordered items** :
Identify the categories they belonged to and their impact on sales.**Highest spend orders** :
Analyze the items purchased and the total amount spent.**Specific times with more or fewer orders** :
Identify patterns in order frequency based on time.**Which cuisines should be prioritized for developing more menu items based on customer preferences?**
## Tool & Library used :
[](https://github.com/Shrutiijoshi/Restaurant-Order-Analysis/blob/main/CODE/mysql_logo.png)## Project Result :
[Click here to get full code](https://github.com/Shrutiijoshi/Restaurant-Order-Analysis/blob/main/SQL_UNGUIDED_PROJECT.sql)## Query task :
1. View the menu_items table2. write a query to find the number of items on the menu
3. What are the least and most expensive items on the menu?
4. How many Italian dishes are on the menu?
5. What are the least and most expensive Italian dishes on the menu?
6. How many dishes are in each category?
7. What is the average dish price within each category?
8. View the order_details table
9. What is the date range of the table?
10. How many orders were made within this date range?
11. How many items were ordered within this date range?
12. Which orders had the most number of items?
13. How many orders had more than 12 items?
14. Combine the menu_items and order_details tables into a single table
15. What were the least and most ordered items? What categories were they in?
16. What were the top 5 orders that spent the most money?
17. View the details of the highest spend order. Which specific items were purchased?
18. View the details of the top 5 highest spend orders