Skip to content

Commit 22bc71f

Browse files
committed
arcade databases task using case/when
1 parent f543e98 commit 22bc71f

File tree

4 files changed

+201
-0
lines changed

4 files changed

+201
-0
lines changed
+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
The kingdom has been given terrible news: the King has passed away. While the nation is mourning, the noblemen need to decide who will take the throne next.
3+
4+
The late King had many children, and now it is necessary to determine their order of succession according to their seniority.
5+
6+
The list of the King's children is represented as a table Successors with the following attributes:
7+
8+
name: the child's name;
9+
birthday: the date of their birthday (it is guaranteed that birthday dates are unique);
10+
gender: their gender (a character equal to 'M' or 'F').
11+
The resulting table should contain the names of the King's heirs in order of their succession to the throne as determined by their age, and preceded by their potential future titles (i.e. "King name" or "Queen name").
12+
13+
Example
14+
15+
For the following table Successors
16+
17+
name birthday gender
18+
Amelia 1711-06-10 F
19+
Anne 1709-11-02 F
20+
Caroline 1713-06-10 F
21+
Frederick 1707-02-01 M
22+
Loisa 1724-12-18 F
23+
Mary 1723-03-05 F
24+
William 1721-04-26 M
25+
The output should be
26+
27+
name
28+
King Frederick
29+
Queen Anne
30+
Queen Amelia
31+
Queen Caroline
32+
King William
33+
Queen Mary
34+
Queen Loisa
35+
*/
36+
37+
CREATE PROCEDURE orderOfSuccession()
38+
BEGIN
39+
select
40+
(case when gender = 'M' then CONCAT('King ', name) else CONCAT('Queen ', name) end) as name
41+
from Successors order by birthday;
42+
END

arcade/databases/orderingEmails.mysql

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
You've started to receive a lot of emails every day, and you decide to sort them in order to make it quicker to navigate through them.
3+
4+
Information about your emails is stored in a table emails, which has the following structure:
5+
6+
id: the unique email id;
7+
email_title: the title of the email;
8+
size: the size of the email's body in bytes.
9+
You decide to sort all the emails by their body sizes in descending order, because you think that the bigger an email is the more important it is. However, you don't like having the sizes written in bytes because they are usually too large and don't make much sense. You want them to be written in kilobytes (1 Kb = 210 bytes) and megabytes (1 Mb = 220 bytes) instead, rounded down if necessary. For example, 21432432 bytes is equal to 20 megabytes and 460912 bytes, so the result should be rounded down to 20 Mb.
10+
11+
Given the table emails, build a table as follows: The resulting table should have the columns id, email_title, and short_size, and should be sorted in descending order by the initial sizes of the emails. It is guaranteed that all the emails are of unique sizes, so there will not be any ties.
12+
13+
Example
14+
15+
For the following table emails
16+
17+
id email_title size
18+
1 You won 1M dollars! 21432432
19+
2 You are fired 312342
20+
3 Black Friday is coming 323
21+
4 Spam email 23532
22+
5 Your requested backup 234234324
23+
the output should be
24+
25+
id email_title short_size
26+
5 Your requested backup 223 Mb
27+
1 You won 1M dollars! 20 Mb
28+
2 You are fired 305 Kb
29+
4 Spam email 22 Kb
30+
3 Black Friday is coming 0 Kb
31+
*/
32+
33+
CREATE PROCEDURE orderingEmails()
34+
BEGIN
35+
select
36+
id,
37+
email_title,
38+
case
39+
when size < 1024 then '0 Kb'
40+
when size >= 1024 and size < 1024 * 1024 then concat(floor(size / 1024), ' Kb')
41+
when size >= 1024 * 1024 then concat(floor(size / (1024 * 1024)), ' Mb')
42+
END as short_size
43+
from emails order by size desc;
44+
END
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
/*
2+
You are trying to decide where you want to go on your vacation, so your travel agency has provided you with a database of possible destinations.
3+
4+
This database contains the table countryActivities, which has the following structure:
5+
6+
id: the unique id of the record;
7+
country: the country name;
8+
region: the region of this country;
9+
leisure_activity_type: the type of activity provided in the region. This can only be equal to one of the following values: Adventure park, Golf, Kart racing, River cruise;
10+
number_of_places: the number of resorts in the region at which you can do this activity.
11+
You want to see how many resorts in each country provide the activities you are interested in before you decide where to go on your vacation, but it's hard to do this using only the table provided by your travel agency. To make things easier, you have decided to create a new table with a better structure.
12+
13+
Given the countryActivities table, compose the resulting table with five columns: country, adventure_park, golf, river_cruise and kart_racing. The first column should contain the country name, while the second, third, fourth, and fifth columns should contain the number of resorts in the country that offer Adventure park, Golf, River cruise, and Kart racing, respectively. The table should be sorted by the country names in ascending order.
14+
15+
Example
16+
17+
For the following table countryActivities
18+
19+
id country region leisure_activity_type number_of_places
20+
1 France Normandy River cruise 2
21+
2 Germany Bavaria Golf 5
22+
3 Germany Berlin Adventure park 2
23+
4 France Ile-de-France River cruise 1
24+
5 Sweden Stockholm River cruise 3
25+
6 France Normandy Kart racing 4
26+
the output should be
27+
28+
country adventure_park golf river_cruise kart_racing
29+
France 0 0 3 4
30+
Germany 2 5 0 0
31+
Sweden 0 0 3 0
32+
*/
33+
34+
CREATE PROCEDURE placesOfInterest()
35+
BEGIN
36+
select
37+
country,
38+
sum(case when leisure_activity_type = 'Adventure Park' then number_of_places else 0 end) as adventure_park,
39+
sum(case when leisure_activity_type = 'Golf' then number_of_places else 0 end) as golf,
40+
sum(case when leisure_activity_type = 'River cruise' then number_of_places else 0 end) as river_cruises,
41+
sum(case when leisure_activity_type = 'Kart racing' then number_of_places else 0 end) as kart_racing
42+
from countryActivities group by country order by country;
43+
END
+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
/*
2+
You have a table scores that contains information about a series of soccer games. Your goal is to determine the winner of the series. A team is declared the winner if it won more games than the other team. If both teams had the same number of wins, then the winner is determined by the better goal difference (the difference between the goals that a team scores and the goals that the opposing team scores on them over all the games). If the goal differences are equal, the winner is the team that scored more goals during away games (i.e. games when it was not the host team). The result is the index of the winning team. If the above criteria are not sufficient for determining the winner, return 0.
3+
4+
The scores table contains the following columns:
5+
6+
match_id - the unique ID of the match;
7+
first_team_score - the score of the 1st team in the current match;
8+
second_team_score - the score of the 2nd team in the current match;
9+
match_host - the team that is the host of the match (can be 1 or 2).
10+
Your task is to write a select statement which returns a single column winner, which can contain 1, 2, or 0.
11+
12+
Example
13+
14+
For given table scores
15+
16+
match_id first_team_score second_team_score match_host
17+
1 3 2 1
18+
2 2 1 2
19+
3 1 2 1
20+
4 2 1 2
21+
the output should be
22+
23+
winner
24+
1
25+
The first team won 3 games out of 4, so it's the winner of the series.
26+
*/
27+
28+
29+
CREATE PROCEDURE soccerGameSeries()
30+
BEGIN
31+
select
32+
(case
33+
when y.first_team_wins > y.second_team_wins then 1
34+
when y.first_team_wins < y.second_team_wins then 2
35+
else (
36+
case
37+
when y.first_team_goals > y.second_team_goals then 1
38+
when y.first_team_goals < y.second_team_goals then 2
39+
else (
40+
case
41+
when y.first_team_away_goals > y.second_team_away_goals then 1
42+
when y.first_team_away_goals < y.second_team_away_goals then 2
43+
else 0
44+
end
45+
)
46+
end
47+
)
48+
end
49+
) as winner
50+
from (
51+
select
52+
sum(case when x.winner = 1 then 1 else 0 end) as first_team_wins,
53+
sum(case when x.winner = 2 then 1 else 0 end) as second_team_wins,
54+
sum(x.first_team_away_goals) as first_team_away_goals,
55+
sum(x.second_team_away_goals) as second_team_away_goals,
56+
sum(x.first_team_goals) as first_team_goals,
57+
sum(x.second_team_goals) as second_team_goals
58+
from (
59+
select
60+
(case
61+
when first_team_score > second_team_score then 1
62+
when first_team_score < second_team_score then 2
63+
else 0
64+
end) as winner,
65+
(case when match_host = 2 then first_team_score else 0 end) as first_team_away_goals,
66+
(case when match_host = 1 then second_team_score else 0 end) as second_team_away_goals,
67+
first_team_score as first_team_goals,
68+
second_team_score as second_team_goals
69+
from scores
70+
) as x
71+
) as y;
72+
END

0 commit comments

Comments
 (0)