[HackerRank] Weather Observation Station 5
MySQL > Weather Observation Station 5
Query the two cities in STATION with the shortest and longest CITY names, as well as their respective lengths (i.e.: number of characters in the name). If there is more than one smallest or largest city, choose the one that comes first when ordered alphabetically.
The STATION table is described as follows:
where LAT_N is the northern latitude and LONG_W is the western longitude.
Sample Input
For example, CITY has four entries: DEF, ABC, PQRS and WXY.
Sample Output
ABC 3
PQRS 4
Explanation
When ordered alphabetically, the CITY names are listed as ABC, DEF, PQRS, and WXY, with lengths and . The longest name is PQRS, but there are options for shortest named city. Choose ABC, because it comes first alphabetically.
Note
You can write two separate queries to get the desired output. It need not be a single query.
My Answer
SELECT CITY, CHAR_LENGTH(CITY) as LEN
FROM STATION
ORDER BY LEN ASC, CITY
Limit 1;
SELECT CITY, CHAR_LENGTH(CITY) LEN
FROM STATION
ORDER BY LEN DESC, CITY
Limit 1;
Author And Source
이 문제에 관하여([HackerRank] Weather Observation Station 5), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@mzzzi/HackerRank-Weather-Observation-Station-5저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)