-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHackerRank.sql
239 lines (194 loc) · 5.88 KB
/
HackerRank.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
--Revising the Select Query I
SELECT *
FROM CITY
WHERE population>100000 AND countrycode='USA';
--Revising the Select Query II
SELECT name
FROM city
WHERE population>120000 AND countrycode='USA';
--Select All
SELECT *
FROM city;
--Select By ID
SELECT *
FROM city
WHERE id=1661;
--Japanese Cities' Attributes
SELECT *
FROM city
WHERE countrycode='JPN';
--Japanese Cities' Names
SELECT name
FROM city
WHERE countrycode='JPN';
--Weather Observation Station 1
SELECT city,state
FROM station;
--Weather Observation Station 3
SELECT DISTINCT city
FROM station
WHERE (id%2)=0;
--Weather Observation Station 4
SELECT COUNT(city)-COUNT(DISTINCT city)
from station;
--Weather Observation Station 9
SELECT DISTINCT city
from station
WHERE city LIKE '[^AEIOU]%';
--Weather Observation Station 8
SELECT DISTINCT city
from station
WHERE city LIKE '[AEIOU]%[AEIOU]';
--Weather Observation Station 7
SELECT DISTINCT city
from station
WHERE city LIKE '%a' OR city LIKE '%e' OR city LIKE'%i' OR city LIKE '%o' OR city LIKE '%u';
--Weather Observation Station 6
SELECT DISTINCT city
from station
WHERE city LIKE 'a%' OR city LIKE 'e%' OR city LIKE'i%' OR city LIKE 'o%' OR city LIKE 'u%';
--Weather Observation Station 5
select CITY,LENGTH(CITY) from STATION order by Length(CITY) asc, CITY limit 1;
select CITY,LENGTH(CITY) from STATION order by Length(CITY) desc, CITY limit 1;
--Employee Names
SELECT name
FROM employee
ORDER BY name;
--Higher Than 75 Marks
SELECT NAME FROM STUDENTS WHERE Marks > 75 ORDER BY RIGHT(NAME, 3), ID ASC;
--Weather Observation Station 12
SELECT DISTINCT city
from station
WHERE city LIKE '[^AEIOU]%' AND city LIKE '%[^AEIOU]';
--Weather Observation Station 11
SELECT DISTINCT city
from station
WHERE city LIKE '[^AEIOU]%' OR city LIKE '%[^AEIOU]';
--Weather Observation Station 10
SELECT DISTINCT city
from station
WHERE city LIKE '%[^AEIOU]';
--Revising Aggregations - Averages
SELECT AVG(population)
FROM city
WHERE district='california';
--Revising Aggregations - The Sum Function
SELECT SUM(population)
FROM city
WHERE district='california';
--Revising Aggregations - The Count Function
SELECT COUNT(id)
FROM city
WHERE population>100000;
--Type of Triangle
SELECT IF(A+B <= C,'Not A Triangle',IF(A = B AND A = C,'Equilateral',IF(A = B OR A = C OR B = C,'Isosceles','Scalene')))
FROM TRIANGLES;
--Employee Salaries
SELECT name
FROM employee
WHERE salary>2000 AND months<10
ORDER BY employee_id asc;
--Top Earners
select (salary * months) as earnings ,count(*) from employee group by 1 order by earnings desc limit 1;
--The Blunder
SELECT CEIL((AVG(SALARY))-(AVG(REPLACE(SALARY,'0','')))) FROM EMPLOYEES;
--Population Density Difference
SELECT MAX(population)-MIN(population)
FROM city;
--Japan Population
SELECT SUM(population)
FROM city
WHERE countrycode='jpn';
--Average Population
SELECT ROUND(AVG(population))
FROM city;
--Weather Observation Station 2
SELECT ROUND(SUM(lat_n),2),ROUND(SUM(long_w),2)
FROM station;
--Weather Observation Station 13
SELECT ROUND(SUM(lat_n),4)
FROM station
WHERE lat_n>38.7880 AND lat_n<137.2345;
--Weather Observation Station 14
SELECT ROUND(MAX(lat_n),4)
FROM station
WHERE lat_n<137.2345;
--Weather Observation Station 15
SELECT ROUND(long_w,4)
FROM station
WHERE lat_n<137.2345
ORDER BY lat_n DESC
LIMIT 1;
--Weather Observation Station 16
SELECT ROUND(lat_n,4)
FROM station
WHERE lat_n>38.7780
ORDER BY lat_n ASC
LIMIT 1;
--Weather Observation Station 17
SELECT ROUND(long_w,4)
FROM station
WHERE lat_n>38.7780
ORDER BY lat_n ASC
LIMIT 1;
--Weather Observation Station 18
SELECT ROUND(abs((MAX(LAT_N) - MIN(LAT_N)))+ABS((MAX(LONG_W)-MIN(LONG_W))),4) FROM STATION;
--Weather Observation Station 19
select round(sqrt(power(min(lat_n)-max(lat_n),2)+power(min(long_w)-max(long_w),2)),4) from station;
--Weather Observation Station 20
SELECT ROUND(AVG(S.LAT_N), 4) FROM STATION S WHERE
ABS((SELECT COUNT(*) FROM STATION WHERE LAT_N < S.LAT_N) -
(SELECT COUNT(*) FROM STATION WHERE LAT_N > S.LAT_N)) <= 1;
--SQL Project Planning
SET sql_mode = '';
SELECT Start_Date, End_Date
FROM
(SELECT Start_Date FROM Projects WHERE Start_Date NOT IN (SELECT End_Date FROM Projects)) a,
(SELECT End_Date FROM Projects WHERE End_Date NOT IN (SELECT Start_Date FROM Projects)) b
WHERE Start_Date < End_Date
GROUP BY Start_Date
ORDER BY DATEDIFF(End_Date, Start_Date), Start_Date;
--Asian Population
SELECT SUM(CITY.POPULATION)
FROM CITY, COUNTRY
WHERE CITY.COUNTRYCODE = COUNTRY.CODE AND COUNTRY.CONTINENT = 'Asia';
--African Cities
SELECT city.name
FROM CITY, COUNTRY
WHERE CITY.COUNTRYCODE = COUNTRY.CODE AND COUNTRY.CONTINENT = 'Africa';
--Draw The Triangle 2
DECLARE @i INT = 1
WHILE (@i <= 20)
BEGIN
PRINT REPLICATE('* ', @i)
SET @i = @i + 1
END
--Draw The Triangle 1
DECLARE @i INT = 20
WHILE (@i > 0)
BEGIN
PRINT REPLICATE('* ', @i)
SET @i = @i - 1
END
--Top Competitors
select h.hacker_id, h.name
from submissions s
inner join challenges c
on s.challenge_id = c.challenge_id
inner join difficulty d
on c.difficulty_level = d.difficulty_level
inner join hackers h
on s.hacker_id = h.hacker_id
where s.score = d.score and c.difficulty_level = d.difficulty_level
group by h.hacker_id, h.name
having count(s.hacker_id) > 1
order by count(s.hacker_id) desc, s.hacker_id asc
--The Report
SELECT (CASE g.grade>=8 WHEN TRUE THEN s.name ELSE null END),g.grade,s.marks
FROM students s INNER JOIN grades g ON s.marks BETWEEN min_mark AND max_mark
ORDER BY g.grade DESC,s.name,s.marks;
--Average Population of Each Continent
SELECT COUNTRY.CONTINENT, FLOOR(AVG(CITY.POPULATION))
FROM CITY INNER JOIN COUNTRY
ON CITY.COUNTRYCODE = COUNTRY.CODE
GROUP BY COUNTRY.CONTINENT;