You are viewing a single comment's thread. Return to all comments →
select CITY, length(CITY) from station order by length(CITY) desc, CITY LIMIT 1;
select CITY, length(CITY) from station order by length(CITY), CITY LIMIT 1;
This code worked for me.
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 5
You are viewing a single comment's thread. Return to all comments →
select CITY, length(CITY) from station order by length(CITY) desc, CITY LIMIT 1;
select CITY, length(CITY) from station order by length(CITY), CITY LIMIT 1;
This code worked for me.