You are viewing a single comment's thread. Return to all comments →
Oracle
select city, length(city) from (select * from station order by length(city) asc, city asc) where rownum <= 1; SELECT CITY, LENGTH(CITY) FROM (SELECT * FROM STATION ORDER BY LENGTH(CITY) DESC, CITY DESC) WHERE ROWNUM <= 1;
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 →
Oracle