Weather Observation Station 5

  • + 1 comment

    You need semicolons after each query. Your code should look like this:

    select CITY, length(CITY) from station order by length(CITY), city limit 1; select CITY, length(CITY) from station order by length(CITY) desc, city limit 1;