Skip to content
Advertisement

Hackerrank SQL problem to solve in Oracle’s SQL version

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:

Sample Input

For example, CITY has four entries: DEF, ABC, PQRS and WXY.

Sample Output

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.

Advertisement

Answer

A little bit of analytic functions; sample data in lines #1 – 6; query begins at line #7.


Reading your comment, it seems you want something like this:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement