Weather Observation Station 5

  • + 0 comments

    select city,length(city) as city_length from station where length(city)=(select min(length(city))from station) order by city asc limit 1;

    select city,length(city) as city_length from station where length(city)=(select max(length(city))from station) order by city asc limit 1; /* so easy */