반응형
Your friends told you that if you keep coding on your computer, you are going to hurt your eyes. They suggested that you go with them to trivia night at the local club.
Once you arrive at the club, you realize the true motive behind your friends' invitation. They know that you are a computer nerd, and they want you to query the countries table and get the answers to the trivia questions.
Schema of the countries table:
- country (String)
- capital (String)
- continent (String)
The first question: from the African countries that start with the character E, get the names of their capitals ordered alphabetically.
- You should only give the names of the capitals. Any additional information is just noise
- If you get more than 3, you will be kicked out, for being too smart
- Also, this database is crowd-sourced, so sometimes Africa is written Africa and in other times Afrika.
Resources:
NOTE: Your solution should use pure SQL. Ruby is used within the test cases just to validate your answer.
Solution:
SELECT
capital
FROM
countries
WHERE
(continent='Africa' or continent='Afrika')
and SUBSTRING(country,1,1)='E'
ORDER BY capital LIMIT 3
SUBSTRING can get the character at the desired position.
Result:
capital |
Addis Ababa |
Asmara |
Cairo |
반응형
'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글
SQL Basics: Truncating (0) | 2022.06.30 |
---|---|
Easy SQL: Counting and Grouping (0) | 2022.06.29 |
First and last IP in a network (0) | 2022.06.27 |
SQL Basics - Trimming the Field (0) | 2022.06.26 |
SQL: Disorder (0) | 2022.06.25 |