-
Notifications
You must be signed in to change notification settings - Fork 0
/
Retail-Sales-Analysis-SQL-Project.sql
278 lines (227 loc) · 6.06 KB
/
Retail-Sales-Analysis-SQL-Project.sql
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
-- Retail Sales Analytics
create table retail_sales(
transactions_id INT PRIMARY KEY,
sale_date DATE,
sale_time TIME,
customer_id INT,
gender VARCHAR(15),
age INT,
category VARCHAR(15),
quantiy INT,
price_per_unit FLOAT,
cogs FLOAT,
total_sale FLOAT
);
select count(*) from retail_sales;
--------------------------------------
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
quantiy is null
or
price_per_unit is null
or
cogs is null
or
total_sale is null;
----------------------------------------
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
quantiy 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 (*) total_sales from retail_sales;
---------
-- 2. Number of unique customers we have
select count (distinct customer_id
) total_sales from retail_sales;
--------
--3. Unique category
select count (distinct category
) total_sales from retail_sales;
select distinct category
total_sales from retail_sales;
--------
------------Data analysis / Business key issues-------------
-- 1. 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';
-- 2. 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 retail_sales
WHERE
category = 'Clothing'
AND
TO_CHAR(sale_date, 'YYYY-MM') = '2022-11'
AND
quantiy >= 4
-- 3. Write a SQL query to calculate the total sales (total_sale) for each category.
select category,
sum(total_sale) as net_sale,
count(*) as total_orders
from retail_sales
group by 1
-- 4. Write a SQL query to find the average age of customers who purchased items from the 'Beauty' category.
SELECT
ROUND(AVG(age), 2) as avg_age
FROM retail_sales
WHERE category = 'Beauty'
-- 5. Write a SQL query to find all transactions where the total_sale is greater than 1000.
select * from retail_sales
where total_sale > 1000
-- 6. 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_transactions
from retail_sales
group by category, gender
order by 1
-- 7. Write a SQL query to calculate the average sale for each month. Find out best selling month in each year
SELECT
year,
month,
avg_sale
FROM
(
SELECT
EXTRACT(YEAR FROM sale_date) as year,
EXTRACT(MONTH FROM sale_date) as month,
AVG(total_sale) as avg_sale,
RANK() OVER(PARTITION BY EXTRACT(YEAR FROM sale_date) ORDER BY AVG(total_sale) DESC) as rank
FROM retail_sales
GROUP BY 1, 2
) as t1
WHERE rank = 1
-- 8. **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 retail_sales
GROUP BY 1
ORDER BY 2 DESC
LIMIT 5
-- 9. Write a SQL query to find the number of unique customers who purchased items from each category.
SELECT
category,
COUNT(DISTINCT customer_id) as cnt_unique_cs
FROM retail_sales
GROUP BY category
-- 10. 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
(
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 retail_sales
)
SELECT
shift,
COUNT(*) as total_orders
FROM hourly_sale
GROUP BY shift
-- 11. Write a SQL query to find the total sales for each category for each day, including days when there were no sales also provide.
WITH date_range AS (
SELECT
GENERATE_SERIES(MIN(sale_date), MAX(sale_date), '1 day'::INTERVAL) AS sale_date
FROM retail_sales
),
category_sales AS (
SELECT
sale_date,
category,
SUM(total_sale) AS total_sales
FROM retail_sales
GROUP BY sale_date, category
)
SELECT
dr.sale_date,
cs.category,
COALESCE(cs.total_sales, 0) AS total_sales
FROM date_range dr
LEFT JOIN category_sales cs ON dr.sale_date = cs.sale_date
ORDER BY 1, 2
-- 12. Write a SQL query to retrieve the category that generated the highest average sales per transaction across all categories.
SELECT category, AVG(total_sale) AS avg_sale
FROM retail_sales
GROUP BY category
ORDER BY AVG(total_sale) DESC
LIMIT 1;
-- 13. Write a SQL query to find customers who made purchases in consecutive months in 2022.
WITH customer_sales AS (
SELECT
customer_id,
EXTRACT(MONTH FROM sale_date) AS month,
EXTRACT(YEAR FROM sale_date) AS year
FROM retail_sales
WHERE EXTRACT(YEAR FROM sale_date) = 2022
GROUP BY customer_id, month, year
),
consecutive_purchases AS (
SELECT
customer_id,
month,
LEAD(month) OVER (PARTITION BY customer_id ORDER BY month) AS next_month
FROM customer_sales
)
SELECT DISTINCT customer_id
FROM consecutive_purchases
WHERE next_month = month + 1;
-- 14. Write a SQL query to retrieve the highest and lowest sale made by customers from each age group (age ranges: 18-25, 26-35, 36-45, 46+).
SELECT
CASE
WHEN age BETWEEN 18 AND 25 THEN '18-25'
WHEN age BETWEEN 26 AND 35 THEN '26-35'
WHEN age BETWEEN 36 AND 45 THEN '36-45'
ELSE '46+'
END AS age_group,
MAX(total_sale) AS max_sale,
MIN(total_sale) AS min_sale
FROM retail_sales
GROUP BY age_group;
-- 15. Write a SQL query to find customers who have returned items (negative sale amounts) and list how many returns they've made.
SELECT customer_id, COUNT(*) AS total_returns
FROM retail_sales
WHERE total_sale < 0
GROUP BY customer_id
HAVING COUNT(*) > 0;