Weather Observation Station 5

Sort by

recency

|

6719 Discussions

|

  • + 0 comments

    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;

  • + 0 comments

    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;

  • + 0 comments

    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;

  • + 0 comments

    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;

  • + 0 comments

    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;