Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 1.23 KB

File metadata and controls

54 lines (37 loc) · 1.23 KB

🛒 Zepto Product & Pricing Analysis (SQL Project)

📊 Project Overview

This project analyzes product data from an e-commerce platform (Zepto) to extract business insights related to pricing, inventory, and revenue potential.


🎯 Objectives

  • Analyze pricing and discount strategies
  • Identify high revenue generating products
  • Evaluate inventory risks
  • Determine value-for-money products

🛠️ Tools Used

  • MySQL
  • SQL (Joins, Aggregations, Case Statements)

📂 Dataset

  • Contains product-level data including price, discount, category, and inventory

🔍 Key Analysis & Insights

💰 Top Revenue Products

Identified products with highest revenue potential based on price and quantity.

🏆 Category Performance

Analyzed which categories contribute most to overall revenue.

⚠️ Inventory Risk

Detected categories with high out-of-stock products.

💸 Discount Analysis

Evaluated impact of discount strategies on pricing.

📦 Value for Money

Identified products offering best quantity per price.


📈 Sample Query

SELECT 
    category,
    SUM(discountedSellingPrice * availableQuantity) AS total_revenue
FROM zepto
GROUP BY category
ORDER BY total_revenue DESC;