We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 5
Weather Observation Station 5
Sort by
recency
|
6719 Discussions
|
Please Login in order to post a comment
SELECT CITY, LENGTH(CITY) FROM STATION ORDER BY LENGTH(CITY) ASC, CITY ASC LIMIT 1;
SELECT CITY, LENGTH(CITY) FROM STATION ORDER BY LENGTH(CITY) DESC, CITY ASC LIMIT 1;
select city, length(city) from station order by length(city) DESC, city ASC limit 1; select city, length(city) from station order by length(city) ASC, city ASC limit 1;
SELECT CITY, length(CITY) from STATION where length(CITY) = (SELECT MAX(length(CITY)) FROM STATION) ORDER BY (CITY) limit 1;
SELECT CITY, length(CITY) FROM STATION where length(CITY) = (SELECT MIN(length(CITY)) FROM STATION) ORDER BY (CITY) limit 1;
select city, length(city) from station order by length(city) ASC, city ASC limit 1;
select city, length(city) from station order by length(city) DESC, city ASC limit 1;
select city, length(city) from station order by length(city) ASC, city ASC limit 1;
select city, length(city) from station order by length(city) DESC, city ASC limit 1;