Weather Observation Station 5

  • + 0 comments

    with cte as( select city, row_number() over(order by length(city), c``ity) as rn from station ) select city, length(city) from cte where rn =1 or rn = (select max(rn) from cte)