Weather Observation Station 5

  • + 7 comments

    Here's the code if anyone need it:

    (select city, length(city) from station order by length(city) desc, city asc limit 1)
    union
    (select city, length(city) from station order by length(city) asc, city asc limit 1);