Project Title: Retail Sales Analysis
Level: Beginner
Database: SQL_Project
This project is designed to demonstrate SQL skills and techniques typically used by data analysts to explore, clean, and analyze retail sales data. The project involves setting up a retail sales database, performing exploratory data analysis (EDA), and answering specific business questions through SQL queries. This project is ideal for those who are starting their journey in data analysis and want to build a solid foundation in SQL.
- Set up a retail sales database: Create and populate a retail sales database with the provided sales data.
- Data Cleaning: Identify and remove any records with missing or null values.
- Exploratory Data Analysis (EDA): Perform basic exploratory data analysis to understand the dataset.
- Business Analysis: Use SQL to answer specific business questions and derive insights from the sales data.
- Database Creation: The project starts by creating a database named
p1_retail_db. - Table Creation: A table named
retail_salesis created to store the sales data. The table structure includes columns for transaction ID, sale date, sale time, customer ID, gender, age, product category, quantity sold, price per unit, cost of goods sold (COGS), and total sale amount.
CREATE DATABASE SQL_Project;
CREATE TABLE retail_sales
(
transactions_id INT PRIMARY KEY,
sale_date DATE,
sale_time TIME,
customer_id INT,
gender VARCHAR(10),
age INT,
category VARCHAR(35),
quantity INT,
price_per_unit FLOAT,
cogs FLOAT,
total_sale FLOAT
);- Record Count: Determine the total number of records in the dataset.
- Customer Count: Find out how many unique customers are in the dataset.
- Category Count: Identify all unique product categories in the dataset.
- Null Value Check: Check for any null values in the dataset and delete records with missing data.
SELECT COUNT(*) FROM retail_sales;
SELECT COUNT(DISTINCT customer_id) FROM retail_sales;
SELECT DISTINCT category FROM retail_sales;
SELECT * FROM retail_sales
WHERE
sale_date IS NULL OR sale_time IS NULL OR customer_id IS NULL OR
gender IS NULL OR age IS NULL OR category IS NULL OR
quantity IS NULL OR price_per_unit IS NULL OR cogs IS NULL;
DELETE FROM retail_sales
WHERE
sale_date IS NULL OR sale_time IS NULL OR customer_id IS NULL OR
gender IS NULL OR age IS NULL OR category IS NULL OR
quantity IS NULL OR price_per_unit IS NULL OR cogs IS NULL;The following SQL queries were developed to answer specific business questions:
- Write a SQL query to retrieve all columns for sales made on '2022-11-05:
Select *
From Retails_sales
Where sale_date = '2022-11-05';- Write a SQL query to retrieve all transactions where the category is 'Clothing' and the quantity sold is more than 4 in the month of Nov-2022:
SELECT *
FROM retails_sales
WHERE category = 'Clothing'
AND DATE_FORMAT(sale_date, '%Y-%m') = '2022-11';- Write a SQL query to calculate the total sales (total_sale) for each category.:
SELECT
Category, SUM(Total_Sale) AS net_scale
FROM
Retails_sales
GROUP BY Category
- Write a SQL query to find the average age of customers who purchased items from the 'Beauty' category.:
Select Avg(Age)
From Retails_sales
Where category = 'Beauty'- Write a SQL query to find all transactions where the total_sale is greater than 1000.:
Select Count(*) as Total_sale
From Retails_sales
Where Total_sale > 1000;
- Write a SQL query to find the total number of transactions (transaction_id) made by each gender in each category.:
SELECT
Category, Gender, COUNT(*) AS Total_trans
FROM
retails_sales
GROUP BY Category , Gender
Order by Category - Write a SQL query to calculate the average sale for each month. Find out best selling month in each year:
Select * From
(Select
Year(Sale_date),
Month(Sale_date),
Round(AVG(Total_sale),2) as Avg_sale,
Rank() Over(Partition by Year(Sale_date) order by AVG(Total_sale) Desc) as Ranks
From Retails_sales
Group by 1,2) as t1
Where Ranks = 1;- **Write a SQL query to find the top 5 customers based on the highest total sales **:
SELECT
customer_id, SUM(Total_sale) AS Total_sales
FROM
Retails_sales
GROUP BY customer_id
ORDER BY 2 DESC
LIMIT 5- Write a SQL query to find the number of unique customers who purchased items from each category.:
SELECT
Category, COUNT(DISTINCT customer_id)
FROM
retails_sales
GROUP BY Category
- Write a SQL query to create each shift and number of orders (Example Morning <12, Afternoon Between 12 & 17, Evening >17):
WITH hourly_sale
AS
(
With hourly_sale
as (
SELECT
*,
CASE
WHEN EXTRACT(HOUR FROM Sale_time) < 12 THEN 'Morning'
WHEN EXTRACT(HOUR FROM Sale_time) BETWEEN 12 AND 17 THEN 'Afternoon'
ELSE 'Evening'
END AS Shift
FROM
Retails_sales)
select shift,
Count(*) as total_orders
From hourly_sale
Group by Shift - Customer Demographics: The dataset includes customers from various age groups, with sales distributed across different categories such as Clothing and Beauty.
- High-Value Transactions: Several transactions had a total sale amount greater than 1000, indicating premium purchases.
- Sales Trends: Monthly analysis shows variations in sales, helping identify peak seasons.
- Customer Insights: The analysis identifies the top-spending customers and the most popular product categories.
- Sales Summary: A detailed report summarizing total sales, customer demographics, and category performance.
- Trend Analysis: Insights into sales trends across different months and shifts.
- Customer Insights: Reports on top customers and unique customer counts per category.
This project serves as a comprehensive introduct