-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProject-Code.sql
More file actions
228 lines (180 loc) · 5.73 KB
/
Project-Code.sql
File metadata and controls
228 lines (180 loc) · 5.73 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
225
226
227
228
SELECT *
FROM schoolsdata.comments;
SELECT *
FROM schoolsdata.location;
SELECT *
FROM schoolsdata.badges;
SELECT *
FROM schoolsdata.courses;
ALTER TABLE schoolsdata.comments
ADD PRIMARY KEY (id);
SELECT *
FROM schoolsdata.comments
INNER JOIN schoolsdata.location
ON schoolsdata.comments.school = schoolsdata.location.school;
SELECT *
FROM schoolsdata.location
INNER JOIN schoolsdata.courses
ON schoolsdata.location.school = schoolsdata.courses.school;
SELECT *
FROM schoolsdata.courses
INNER JOIN schoolsdata.comments
ON schoolsdata.courses.school = schoolsdata.comments.school;
ALTER TABLE schoolsdata.badges
MODIFY COLUMN school VARCHAR(50);
ALTER TABLE schoolsdata.comments
MODIFY COLUMN school VARCHAR(50);
ALTER TABLE schoolsdata.courses
MODIFY COLUMN school VARCHAR(50);
ALTER TABLE schoolsdata.location
MODIFY COLUMN school VARCHAR(50);
ALTER TABLE schoolsdata.comments
ADD CONSTRAINT foreign_1
FOREIGN KEY (school)
REFERENCES schools.badges(school);
ALTER TABLE schoolsdata.comments
ADD CONSTRAINT foreign_4
FOREIGN KEY (school)
REFERENCES schools.courses(school);
ALTER TABLE schoolsdata.comments
ADD CONSTRAINT foreign_5
FOREIGN KEY (school)
REFERENCES schools.location(school);
ALTER TABLE schoolsdata.courses
ADD CONSTRAINT foreign_2
FOREIGN KEY (school)
REFERENCES schools.badges(school);
ALTER TABLE schoolsdata.courses
ADD CONSTRAINT foreign_3
FOREIGN KEY (school)
REFERENCES schools.location(school);
ALTER TABLE schoolsdata.courses
ADD CONSTRAINT foreign_6
FOREIGN KEY (school)
REFERENCES schools.comments(school);
ALTER TABLE schoolsdata.location
ADD CONSTRAINT foreign_7
FOREIGN KEY (school)
REFERENCES schools.comments(school);
ALTER TABLE schoolsdata.location
ADD CONSTRAINT foreign_8
FOREIGN KEY (school)
REFERENCES schools.courses(school);
ALTER TABLE schoolsdata.location
ADD CONSTRAINT foreign_9
FOREIGN KEY (school)
REFERENCES schools.badges(school);
/**/
#SCHOOLS
SELECT distinct school
FROM schoolsdata.courses;
#AVERAGE OVERALL SCORES FOR EACH SCHOOL, RANKED FROM HIGHEST
SELECT school, AVG(overallScore)
FROM schoolsdata.comments
GROUP BY school
ORDER BY AVG(overallScore) DESC;
#AVERAGE OVERALL SCORES FOR DATA ANALYTICS PROGRAM
SELECT school, AVG(overallScore)
FROM schoolsdata.comments
WHERE program LIKE 'Data An%'
GROUP BY school
ORDER BY AVG(overallScore) DESC;
#LOCATION OPTIONS (INCLUDING ONLINE) FOR EACH SCHOOL
SELECT school, COUNT(CONCAT(city_name, ', ' ,country_name)) AS location
FROM schoolsdata.location
GROUP BY school
ORDER BY location DESC;
#CHANGE IN SCORE FOR THE DATA ANALYTICS PROGRAM AT IRONHACK IN 2023
SELECT queryDate as year_of_query, AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'ironhack' and queryDate LIKE '2023%' and program LIKE 'Data An%'
GROUP BY year_of_query;
#AVERAGE OVERALLSCORE FOR THE DATA ANALYTICS PROGRAM FOR ALL SCHOOLS IN 2023
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'ironhack'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2023-01-01' AND '2023-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'springboard'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2023-01-01' AND '2023-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'brainstation'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2023-01-01' AND '2023-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'udacity'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2023-01-01' AND '2023-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'general-assembly'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2023-01-01' AND '2023-12-31';
#AVERAGE OVERALLSCORE FOR THE DATA ANALYTICS PROGRAM FOR ALL SCHOOLS IN 2023
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'ironhack'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2022-01-01' AND '2022-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'springboard'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2022-01-01' AND '2022-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'brainstation'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2022-01-01' AND '2022-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'udacity'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2022-01-01' AND '2022-12-31';
SELECT AVG(overallScore) AS avg_score
FROM schools.comments
WHERE school LIKE 'general-assembly'
AND program LIKE 'Data An%'
AND queryDate BETWEEN '2022-01-01' AND '2022-12-31';
#NUMBER OF REVIEWS FOR DATA ANALYTICS PROGRAM FOR EACH SCHOOL
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'ironhack'
GROUP BY program
ORDER BY total_reviews_program;
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'app-academy'
GROUP BY program
ORDER BY total_reviews_program;
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'springboard'
GROUP BY program
ORDER BY total_reviews_program;
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'brainstation'
GROUP BY program
ORDER BY total_reviews_program;
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'udacity'
GROUP BY program
ORDER BY total_reviews_program;
SELECT program, count(*) AS total_reviews_program
FROM schools.comments
where program LIKE 'Data An%'
AND school = 'general-assembly'
GROUP BY program
ORDER BY total_reviews_program;