Weather Observation Station 5

  • + 0 comments

    MYSQL

    select city, length(city) from station where length(city) in ( select min(length(city)) from station ) ORDER BY city asc limit 1; select city, length(city) from station where length(city) in ( select max(length(city)) from station ) ORDER BY city asc limit 1;