-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_project.sql
More file actions
167 lines (138 loc) · 3.2 KB
/
Copy pathsql_project.sql
File metadata and controls
167 lines (138 loc) · 3.2 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
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
-----SQL DATA PROJE
CREATE DATABSE SQL_PROJECT1
---- CREATE TAble
SELECT * FROM public.retail_sales;
ORDER BY transactions_id ASC LIMIT 100
----count records
select
count(*)
from retail_sales;
-----check null values
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
--how many sales we have
select count(*) as total_sales from retail_sales
---- how many uniuque customer we have
select count (DISTINCT customer_id) as total_sale from retail_sales
select distinct category from retail_sales
---data Analysis
-----1)specific date sale
select * from retail_sales where sale_date ='2022-11-05';
-----2)all transaction when category is Clothing
select * from retail_sales where category ='Clothing'
and to_char(sale_date, 'yyyy-mm')='2022-11'
and quantiy >=4
-----3) total sales for each category
select category,
sum(total_sale) as net_sale,
count (*) as total_orders
from retail_sales
group by 1
-----4) avg age of customer who purchase beauty
select round(avg(age),2) as avg_age from retail_sales where category ='Beauty'
-----5) total sale greter then 1000
select * from
retail_sales where total_sale >1000
-----6) total number of transaction id for category and gender
select
category,
gender,
count (*) total_trans
from retail_sales
group by
category,
gender
order by 1
-----7)write sql query to calculate the average sale for each month
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
select * from retail_sales;
-------8) unique customer sales
select
customer_id,
sum(total_sale) as total_sales
from retail_sales
group by 1
order by 2 desc
limit 5
------9) number of customer who purchase unique category
select
category,
count(distinct customer_id) as count_unique_cs
from retail_sales
group by category
-----10)order by shift
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