Weather Observation Station 5

  • + 0 comments
    select
    city,
    char_length(city)
    from STATION
    where city =
        (select
            city
        from STATION
        where char_length(city) = 
            (select min(char_length(city))
            from STATION order by city)
        order by city
        limit 1)
    or city =
        (select
            city
        from STATION
        where char_length(city) = 
            (select max(char_length(city))
            from STATION order by city)
        order by city
        limit 1);