(select city, length(city)
from station
where length(city) in (
select min(length(city))
from station
)
order by city
limit 1)
union
(select city, length(city)
from station
where length(city) in (
select max(length(city))
from station
)
order by city
limit 1)
LENGTH() : 문자열의 길이를 띄어쓰기까지 포함해서 byte수로 알려주는 함수
!! 한글의 경우 영문자와 다르게 바이트수가 2-3배가 될 수도 있음.
따라서 순수한 문자 수 자체를 세려면 -> CHAR_LENGTH()