-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsql_queries.sql
More file actions
228 lines (201 loc) · 5.19 KB
/
Copy pathsql_queries.sql
File metadata and controls
228 lines (201 loc) · 5.19 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
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
USE vendor_analysis;
select COUNT(Description) from vendor_sales_summary;
-- SELECT
-- VendorNumber,
-- ROUND(SUM(Freight),2) AS Total_Freight
-- FROM vendor_invoice
-- GROUP BY VendorNumber;
-- SELECT
-- p.VendorNumber,
-- p.VendorName,
-- p.Brand,
-- p.PurchasePrice,
-- pp.Volume,
-- pp.Price AS Actual_Price,
-- SUM(p.Quantity) AS TotalPurchasedQuantity,
-- ROUND(SUM(p.Dollars),2) AS TotalPurchasedDollars
-- FROM purchases p
-- JOIN purchase_prices pp
-- ON p.Brand = pp.Brand
-- WHERE p.PurchasePrice > 0
-- GROUP BY
-- p.VendorNumber,
-- p.VendorName,
-- p.Brand,
-- p.PurchasePrice,
-- pp.Volume,
-- pp.Price
-- ORDER BY
-- TotalPurchasedDollars;
-- SELECT
-- VendorNo,
-- Brand,
-- SUM(SalesQuantity) AS TotalSalesQuantity,
-- ROUND(SUM(SalesDollars),2) AS TotalSalesDollars,
-- ROUND(SUM(SalesPrice),2) AS TotalSalesPrice,
-- ROUND(SUM(ExciseTax),2) AS TotalExciseTax
-- FROM sales
-- GROUP BY
-- VendorNo,
-- Brand
-- ORDER BY
-- TotalSalesDollars DESC;
-- SELECT
-- pp.VendorNumber,
-- pp.VendorName,
-- pp.Brand,
-- pp.PurchasePrice,
-- pp.Price AS Actual_Price,
-- SUM(vi.Quantity) AS TotalPurchasedQuantity,
-- ROUND(SUM(vi.Dollars),2) AS TotalPurchasedDollars,
-- ROUND(SUM(vi.Freight),2) as TotalFreightCost,
-- SUM(s.SalesQuantity) AS TotalSalesQuantity,
-- ROUND(SUM(s.SalesDollars),2) AS TotalSalesDollars,
-- ROUND(SUM(s.SalesPrice),2) AS TotalSalesPrice,
-- ROUND(SUM(s.ExciseTax),2) AS TotalExciseTax
-- FROM purchase_prices pp
-- JOIN sales s
-- ON pp.Brand = s.Brand
-- AND pp.VendorNumber = s.VendorNo
-- JOIN vendor_invoice vi
-- ON pp.VendorNumber = vi.VendorNumber
-- GROUP BY
-- pp.VendorNumber,
-- pp.VendorName,
-- pp.Brand,
-- pp.PurchasePrice,
-- pp.Price;
-- optimized query : BUT EXCIDE THE 30 SECS TIME LIMIT
-- WITH FreightSummary AS (
-- SELECT
-- VendorNumber,
-- ROUND(SUM(Freight),2) AS FreightCost
-- FROM vendor_invoice
-- GROUP BY VendorNumber
-- ),
-- PurchaseSummary AS (
-- SELECT
-- p.VendorNumber,
-- p.VendorName,
-- p.Brand,
-- p.PurchasePrice,
-- pp.Volume,
-- pp.Price AS Actual_Price,
-- SUM(p.Quantity) AS TotalPurchasedQuantity,
-- ROUND(SUM(p.Dollars),2) AS TotalPurchasedDollars
-- FROM purchases p
-- JOIN purchase_prices pp
-- ON p.Brand = pp.Brand
-- WHERE p.PurchasePrice > 0
-- GROUP BY
-- p.VendorNumber,
-- p.VendorName,
-- p.Brand,
-- p.PurchasePrice,
-- pp.Volume,
-- pp.Price
-- ),
-- SalesSummary AS (
-- SELECT
-- VendorNo,
-- Brand,
-- SUM(SalesQuantity) AS TotalSalesQuantity,
-- ROUND(SUM(SalesDollars),2) AS TotalSalesDollars,
-- ROUND(SUM(SalesPrice),2) AS TotalSalesPrice,
-- ROUND(SUM(ExciseTax),2) AS TotalExciseTax
-- FROM sales
-- GROUP BY
-- VendorNo,
-- Brand
-- )
-- SELECT
-- ps.VendorNumber,
-- ps.VendorName,
-- ps.Brand,
-- ps.PurchasePrice,
-- ps.Actual_Price,
-- ps.Volume,
-- ps.TotalPurchasedQuantity,
-- ps.TotalPurchasedDollars,
-- ss.TotalSalesQuantity,
-- ss.TotalSalesDollars,
-- ss.TotalSalesPrice,
-- ss.TotalExciseTax,
-- fs.FreightCost
-- FROM PurchaseSummary ps
-- LEFT JOIN SalesSummary ss
-- ON ps.VendorNumber = ss.VendorNo
-- AND ps.Brand = ss.Brand
-- LEFT JOIN FreightSummary fs
-- ON ps.VendorNumber = fs.VendorNumber
-- ORDER BY ps.TotalPurchasedDollars DESC;
-- 1. Aggregate Freight exactly as before
WITH FreightSummary AS (
SELECT
VendorNumber,
ROUND(SUM(Freight), 2) AS FreightCost
FROM vendor_invoice
GROUP BY VendorNumber
),
-- 2. Aggregate Purchases FIRST to prevent Many-to-Many data explosion
AggregatedPurchases AS (
SELECT
VendorNumber,
VendorName,
Brand,
PurchasePrice,
SUM(Quantity) AS TotalPurchasedQuantity,
ROUND(SUM(Dollars), 2) AS TotalPurchasedDollars
FROM purchases
WHERE PurchasePrice > 0
GROUP BY VendorNumber, VendorName, Brand, PurchasePrice
),
-- 3. Join the prices cleanly now that the rows are condensed
PurchaseSummary AS (
SELECT
ap.VendorNumber,
ap.VendorName,
ap.Brand,
ap.PurchasePrice,
pp.Volume,
pp.Price AS Actual_Price,
ap.TotalPurchasedQuantity,
ap.TotalPurchasedDollars
FROM AggregatedPurchases ap
LEFT JOIN purchase_prices pp
ON ap.Brand = pp.Brand
),
-- 4. Aggregate Sales exactly as before
SalesSummary AS (
SELECT
VendorNo,
Brand,
SUM(SalesQuantity) AS TotalSalesQuantity,
ROUND(SUM(SalesDollars), 2) AS TotalSalesDollars,
ROUND(SUM(SalesPrice), 2) AS TotalSalesPrice,
ROUND(SUM(ExciseTax), 2) AS TotalExciseTax
FROM sales
GROUP BY VendorNo, Brand
)
-- 5. Combine everything in the final rapid output
SELECT
ps.VendorNumber,
ps.VendorName,
ps.Brand,
ps.PurchasePrice,
ps.Actual_Price,
ps.Volume,
ps.TotalPurchasedQuantity,
ps.TotalPurchasedDollars,
ss.TotalSalesQuantity,
ss.TotalSalesDollars,
ss.TotalSalesPrice,
ss.TotalExciseTax,
fs.FreightCost
FROM PurchaseSummary ps
LEFT JOIN SalesSummary ss
ON ps.VendorNumber = ss.VendorNo
AND ps.Brand = ss.Brand
LEFT JOIN FreightSummary fs
ON ps.VendorNumber = fs.VendorNumber
ORDER BY ps.TotalPurchasedDollars DESC;