-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_query_project1.sql
More file actions
134 lines (106 loc) · 3.59 KB
/
sql_query_project1.sql
File metadata and controls
134 lines (106 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
CREATE DATABASE sql_project1;
USE sql_project1;
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(50),
quantity INT,
price_per_unit DECIMAL(10,2),
cogs DECIMAL(10,2),
total_sale DECIMAL(10,2)
);
SET GLOBAL local_infile = 1;
SELECT * FROM retail_sales ;
SELECT * FROM retail_sales
WHERE transactions_id IS NULL;
SELECT *
FROM retail_sales
WHERE transactions_id IS NULL
OR 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
OR total_sale IS NULL;
SET SQL_SAFE_UPDATES = 0;
DELETE FROM retail_sales
WHERE transactions_id IS NULL
OR 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
OR total_sale IS NULL;
-- DATA EXPLORATION
-- 1. HOW MANY SALES WE HAVE?
SELECT COUNT(*) as total_sales FROM retail_sales;
-- 2. HOW MANY CUSTOMER WE HAD
SELECT COUNT(distinct customer_id) as total_sales FROM retail_sales;
-- 3. Total revenue
SELECT SUM(total_sale) AS total_revenue FROM retail_sales;
-- 4. Average customer age
SELECT AVG(age) AS avg_customer_age FROM retail_sales;
-- 5. Sales by category
SELECT category, SUM(total_sale) AS category_sales
FROM retail_sales
GROUP BY category
ORDER BY category_sales DESC;
-- 6. Sales by gender
SELECT gender, SUM(total_sale) AS gender_sales
FROM retail_sales
GROUP BY gender;
-- 8. Average price per unit by category
SELECT category, AVG(price_per_unit) AS avg_price
FROM retail_sales
GROUP BY category
ORDER BY avg_price DESC;
-- 10. Top 5 customers by spending
SELECT customer_id, SUM(total_sale) AS total_spent
FROM retail_sales
GROUP BY customer_id
ORDER BY total_spent DESC
LIMIT 5;
--------------------------------------------------------------------------------------------------------------
-- Q1: Retrieve all columns for sales made on '2022-11-05'
-- Q2: Retrieve all transactions where the category is 'Clothing' and the quantity sold is 4 in the month of Nov-2022
-- Q3: Calculate the total sales (total_sale) for each category
-- Q4: Find the average age of customers who purchased items from the 'Beauty' category
-- Q5: Find all transactions where the total_sale is greater than 1000
-------------------------------------------------------------------------------------------------------------
-- Q1: Write a SQL query to retrieve all columns for sales made on '2022-11-05'
SELECT *
FROM retail_sales
WHERE sale_date = '2022-11-05';
-- Q2: Write a SQL query to retrieve all transactions where the category is 'Clothing'
-- and the quantity sold is 4 in the month of Nov-2022
SELECT *
FROM retail_sales
WHERE category = 'Clothing'
AND quantity = 4
AND sale_date BETWEEN '2022-11-01' AND '2022-11-30';
-- Q3: Write a SQL query to calculate the total sales (total_sale) for each category
SELECT category, SUM(total_sale) AS total_sales
FROM retail_sales
GROUP BY category;
-- Q4: Write a SQL query to find the average age of customers who purchased items
-- from the 'Beauty' category
SELECT category, AVG(age) AS avg_age
FROM retail_sales
WHERE category = 'Beauty'
GROUP BY category;
-- Q5: Write a SQL query to find all transactions where the total_sale is greater than 1000
SELECT *
FROM retail_sales
WHERE total_sale > 1000;