-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC. Data Allocation Challenge.sql
245 lines (240 loc) · 6.06 KB
/
C. Data Allocation Challenge.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
-- C. Data Allocation Challenge
-- 1. running customer balance column that includes the impact each transaction
WITH transactions_impact AS (
SELECT
*,
CASE
WHEN txn_type = 'purchase' OR txn_type = 'withdrawal' THEN txn_amount * -1
ELSE
txn_amount
END AS _transaction
FROM
customer_transactions
ORDER BY customer_id
)
SELECT
customer_id,
txn_date,
_transaction,
SUM(_transaction) OVER (PARTITION BY customer_id ORDER BY txn_date ASC) AS running_total
FROM
transactions_impact;
-- 2. customer balance at the end of each month
WITH impact AS ( -- It is factoring in the impact of purchase, withdrawal and deposit
SELECT
customer_id,
DATE_FORMAT(txn_date, '%Y-%m') AS txn_month,
CASE
WHEN txn_type = 'deposit' THEN txn_amount
ELSE txn_amount * -1
END AS impact_of_transactions
FROM
customer_transactions
GROUP BY
customer_id,
DATE_FORMAT(txn_date, '%Y-%m'),
impact_of_transactions
ORDER BY customer_id ASC
),
MonthlyTotal AS ( -- It is calculating the total balance per month
SELECT
customer_id,
txn_month,
SUM(impact_of_transactions) AS total_balance
FROM
impact
GROUP BY
customer_id,
txn_month
ORDER BY customer_id ASC
)
SELECT
customer_id,
txn_month,
SUM(total_balance) OVER (PARTITION BY customer_id ORDER BY txn_month ASC) AS closing_balance
FROM
MonthlyTotal;
-- 3. minimum, average and maximum values of the running balance for each customer
WITH transactions_impact AS (
SELECT
*,
CASE
WHEN txn_type = 'purchase' OR txn_type = 'withdrawal' THEN txn_amount * -1
ELSE
txn_amount
END AS impact
FROM
customer_transactions
),
RunningTotal AS (
SELECT
*,
SUM(impact) OVER (PARTITION BY customer_id ORDER BY txn_date ASC) AS running_total
FROM
transactions_impact
)
SELECT
customer_id,
MIN(running_total) AS miminum_running_balance,
MAX(running_total) AS maximum_running_balance,
ROUND(AVG(running_total),1) AS average_running_balance
FROM
RunningTotal
GROUP BY
customer_id;
-- Option 1: data is allocated based off the amount of money at the end of the previous month
WITH impact AS ( -- It is factoring in the impact of purchase, withdrawal and deposit
SELECT
customer_id,
DATE_FORMAT(txn_date, '%Y-%m') AS txn_month,
CASE
WHEN txn_type = 'deposit' THEN txn_amount
ELSE txn_amount * -1
END AS impact_of_transactions
FROM
customer_transactions
GROUP BY
customer_id,
DATE_FORMAT(txn_date, '%Y-%m'),
impact_of_transactions
ORDER BY customer_id ASC
),
MonthlyTotal AS ( -- It is calculating the total balance per month
SELECT
customer_id,
txn_month,
SUM(impact_of_transactions) AS total_balance
FROM
impact
GROUP BY
customer_id,
txn_month
ORDER BY customer_id ASC
),
ClosingBalance AS ( -- It is calculating current month closing balance
SELECT
customer_id,
txn_month,
SUM(total_balance) OVER (PARTITION BY customer_id, txn_month ORDER BY txn_month ASC) AS current_month_closing_balance
FROM
MonthlyTotal
),
PreviousMonthClosing AS ( -- It is calculating the closing balance for previous month
SELECT
customer_id,
txn_month,
current_month_closing_balance,
LAG(current_month_closing_balance, 1, current_month_closing_balance) OVER (PARTITION BY customer_id ORDER BY txn_month) AS last_month_closing_balance
FROM
ClosingBalance
)
SELECT
txn_month,
SUM(CASE
WHEN last_month_closing_balance < 0 THEN 0
ELSE last_month_closing_balance
END) AS data_needed_per_month
FROM
PreviousMonthClosing
GROUP BY
txn_month
ORDER BY
txn_month ASC;
-- For Option 2: data is allocated on the average amount of money kept in the account in the previous 30 days.
WITH impact AS ( -- It is factoring in the impact of purchase, withdrawal and deposit
SELECT
customer_id,
DATE_FORMAT(txn_date, '%Y-%m') AS txn_month,
CASE
WHEN txn_type = 'deposit' THEN txn_amount
ELSE txn_amount * -1
END AS impact_of_transactions
FROM
customer_transactions
GROUP BY
customer_id,
DATE_FORMAT(txn_date, '%Y-%m'),
impact_of_transactions
ORDER BY customer_id ASC
),
MonthlyTotal AS ( -- It is calculating the total balance per month
SELECT
customer_id,
txn_month,
SUM(impact_of_transactions) AS total_balance
FROM
impact
GROUP BY
customer_id,
txn_month
ORDER BY customer_id ASC
),
ClosingBalance AS ( -- It is calculating current month closing balance
SELECT
customer_id,
txn_month,
SUM(total_balance) OVER (PARTITION BY customer_id, txn_month ORDER BY txn_month ASC) AS current_month_closing_balance
FROM
MonthlyTotal
),
PreviousMonthClosing AS ( -- It is calculating the closing balance for previous month
SELECT
customer_id,
txn_month,
current_month_closing_balance,
LAG(current_month_closing_balance, 1, current_month_closing_balance) OVER (PARTITION BY customer_id ORDER BY txn_month) AS last_month_closing_balance
FROM
ClosingBalance
)
SELECT
txn_month,
ROUND(AVG(CASE
WHEN last_month_closing_balance < 0 THEN 0
ELSE last_month_closing_balance
END), 2) AS data_needed_per_month
FROM
PreviousMonthClosing
GROUP BY
txn_month
ORDER BY
txn_month ASC;
-- For option 3: data is updated real-time
WITH transactions_impact AS (
SELECT
*,
CASE
WHEN txn_type = 'purchase' OR txn_type = 'withdrawal' THEN txn_amount * -1
ELSE
txn_amount
END AS txn_impact
FROM
customer_transactions
ORDER BY customer_id
),
RunningTotal AS (
SELECT
customer_id,
txn_date,
txn_impact,
SUM(txn_impact) OVER (PARTITION BY customer_id ORDER BY txn_date ASC) AS running_total
FROM
transactions_impact
),
RealTimeDataRequirement AS (
SELECT
customer_id,
DATE_FORMAT(txn_date, '%Y-%m') AS txn_month,
running_total,
CASE WHEN running_total < 0 THEN 0 ELSE running_total
END AS required_data
FROM
RunningTotal
)
SELECT
txn_month,
SUM(required_data) AS data_needed_per_month
FROM
RealTimeDataRequirement
GROUP BY
txn_month
ORDER BY txn_month ASC;