Weather Observation Station 5

  • + 0 comments

    select * from (select city,length(city) from station where length(city)=(select min(length(city)) from station) order by 1 asc limit 1) as T union select * from (select city,length(city) from station where length(city)=(select max(length(city)) from station) order by 1 asc limit 1) as T1