-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQL Assignment.sql
348 lines (300 loc) · 6.92 KB
/
SQL Assignment.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
--Part 1 - 1 (Loading and exploring Data)
SELECT TOP 10 * FROM badges;
SELECT TOP 10 * FROM comments;
SELECT TOP 10 * FROM post_history;
SELECT TOP 10 * FROM post_links;
SELECT TOP 10 * FROM posts_answers;
SELECT TOP 10 * FROM tags;
SELECT TOP 10 * FROM users;
SELECT TOP 10 * FROM votes;
SELECT TOP 10 * FROM posts;
desc badges;
desc comments;
desc post_history;
desc post_links;
desc posts_answers;
desc tags;
desc users;
desc votes;
desc posts;
SELECT COUNT(*) FROM badges;
SELECT COUNT(*) FROM comments;
SELECT COUNT(*) FROM post_history;
SELECT COUNT(*) FROM post_links;
SELECT COUNT(*) FROM posts_answers;
SELECT COUNT(*) FROM tags;
SELECT COUNT(*) FROM users;
SELECT COUNT(*) FROM votes;
SELECT COUNT(*) FROM posts;
--Part 1 - 2 Filtering and Sorting
SELECT id, post_id, user_id, creation_date, text
FROM comments
WHERE creation_date >= '2012-01-01' AND creation_date < '2013-01-01'
ORDER BY creation_date ASC;
--Part 1 - 3 Simple Aggregation
SELECT COUNT(DISTINCT id) AS total_unique_badges FROM badges;
select AVG(post_type_id) from posts_answers;
--Part 2 - 1 . a Basic Joins
SELECT
p.title AS post_title,
ph.text AS history_text,
ph.creation_date AS history_creation_date
FROM
posts p
JOIN
post_history ph
ON
p.id = ph.post_id
ORDER BY
p.title, ph.creation_date;
--Part 2 - 1 . b Basic Joins
SELECT
u.id AS user_id,
u.display_name AS user_name,
COUNT(b.id) AS total_badges_earned
FROM
users u
LEFT JOIN
badges b
ON
u.id = b.user_id
GROUP BY
u.id, u.display_name
ORDER BY
total_badges_earned DESC;
--Part 2 - 2 . a Multitable Joins
SELECT
p.title AS post_title,
c.text AS comment_text,
u.display_name AS commenter_name
FROM
posts p
JOIN
comments c
ON
p.id = c.post_id
JOIN
users u
ON
c.user_id = u.id
ORDER BY
p.title, c.creation_date;
--Part 2 - 2 . b Multitable Joins
SELECT u.id AS user_id,
u.display_name AS user_name,
u.reputation,
b.name AS badge_name,
b.date AS badge_date,
c.text AS comment_text,
c.creation_date AS comment_date
FROM
users u
JOIN
badges b
ON
u.id = b.user_id
JOIN
comments c
ON
u.id = c.user_id
ORDER BY
u.display_name, b.date, c.creation_date;
--Part 3 - 1 . a Single Row Subquery
SELECT id, display_name, reputation, creation_date
FROM users ORDER BY reputation DESC;
--Part 3 - 1 . b Single Row Subquery
WITH RankedPosts AS (
SELECT id, title, post_type_id, creation_date, score, view_count, owner_user_id,
ROW_NUMBER() OVER (PARTITION BY post_type_id ORDER BY score DESC) AS rank
FROM
posts
)
SELECT id, title, post_type_id, creation_date, score, view_count, owner_user_id
FROM
RankedPosts
WHERE
rank = 1;
--Part 3 - 2 Corelated Subquries
SELECT
post_id, COUNT(related_post_id) AS related_post_count
FROM
post_links
GROUP BY
post_id
ORDER BY
related_post_count DESC;
--Part 4 - 1
--Part 4 - 2 Recursive CTE
WITH RECURSIVE PostHierarchy AS (
-- Anchor member: Start with the root post(s)
SELECT
post_id AS root_post_id,
related_post_id AS linked_post_id,
1 AS level -- Level of hierarchy (starting from 1)
FROM
post_links
WHERE
post_id = 1 -- Specify the root post ID to start the hierarchy
UNION ALL
-- Recursive member: Traverse the hierarchy
SELECT
ph.root_post_id,
pl.related_post_id AS linked_post_id,
ph.level + 1 AS level -- Increment the level
FROM
PostHierarchy ph
JOIN
post_links pl
ON
ph.linked_post_id = pl.post_id
)
SELECT
root_post_id,
linked_post_id,
level
FROM
PostHierarchy
ORDER BY
root_post_id, level;
--Part 5 - 1 . a Windows Function
WITH PostYear AS (
SELECT
id,
title,
post_type_id,
creation_date,
score,
view_count,
owner_user_id,
EXTRACT(YEAR FROM creation_date) AS post_year -- Extract the year from creation_date
FROM
posts
)
SELECT
id,
title,
post_type_id,
creation_date,
score,
view_count,
owner_user_id,
post_year,
RANK() OVER (PARTITION BY post_year ORDER BY score DESC) AS rank_within_year
FROM
PostYear
ORDER BY
post_year DESC, rank_within_year;
--Part 5 - 1 . b Windows Function
SELECT
user_id,
name AS badge_name,
date AS badge_date,
SUM(1) OVER (PARTITION BY user_id ORDER BY date) AS running_total_badges
FROM
badges
ORDER BY
user_id, date;
--Insight - 1 New Insight and Questions
WITH user_comments AS (
SELECT
user_id,
COUNT(*) AS comment_count
FROM
comments
GROUP BY
user_id
),
user_edits AS (
SELECT
user_id,
COUNT(*) AS edit_count
FROM
post_history
WHERE
post_history_type_id = 2 -- Assuming type 2 represents edits
GROUP BY
user_id
),
user_votes AS (
SELECT
user_id,
COUNT(*) AS vote_count
FROM
votes
GROUP BY
user_id
),
combined_contributions AS (
SELECT
u.id AS user_id,
u.display_name,
COALESCE(uc.comment_count, 0) AS comment_count,
COALESCE(ue.edit_count, 0) AS edit_count,
COALESCE(uv.vote_count, 0) AS vote_count,
(COALESCE(uc.comment_count, 0) + COALESCE(ue.edit_count, 0) + COALESCE(uv.vote_count, 0)) AS total_contributions
FROM
users u
LEFT JOIN
user_comments uc ON u.id = uc.user_id
LEFT JOIN
user_edits ue ON u.id = ue.user_id
LEFT JOIN
user_votes uv ON u.id = uv.user_id
)
SELECT
user_id,
display_name,
comment_count,
edit_count,
vote_count,
total_contributions
FROM
combined_contributions
ORDER BY
total_contributions DESC;
--Insight - 2 New Insight and Questions
SELECT
name AS badge_name,
COUNT(*) AS badge_count
FROM
badges
GROUP BY
name
ORDER BY
badge_count DESC;
--Insight - 3 New Insight and Questions
WITH post_scores AS (
SELECT
p.id AS post_id,
p.score,
pt.tag_id
FROM
posts p
JOIN
post_tags pt ON p.id = pt.post_id
),
tag_scores AS (
SELECT
t.id AS tag_id,
t.tag_name,
SUM(ps.score) AS total_score
FROM
tags t
JOIN
post_scores ps ON t.id = ps.tag_id
GROUP BY
t.id, t.tag_name
)
SELECT
tag_id,
tag_name,
total_score
FROM
tag_scores
ORDER BY
total_score DESC;
--Insight - 4 New Insight and Questions
SELECT
COUNT(*) AS total_related_links
FROM
post_links;