You are viewing a single comment's thread. Return to all comments →
-- Shortest CITY name SELECT TOP 1 CITY, LEN(CITY) AS LEN FROM ( SELECT CITY FROM STATION ) AS Shortest ORDER BY LEN(CITY) ASC, CITY ASC;
-- Longest CITY name SELECT TOP 1 CITY, LEN(CITY) AS LEN FROM ( SELECT CITY FROM STATION ) AS Longest ORDER BY LEN(CITY) DESC, CITY ASC;
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 →
-- Shortest CITY name SELECT TOP 1 CITY, LEN(CITY) AS LEN FROM ( SELECT CITY FROM STATION ) AS Shortest ORDER BY LEN(CITY) ASC, CITY ASC;
-- Longest CITY name SELECT TOP 1 CITY, LEN(CITY) AS LEN FROM ( SELECT CITY FROM STATION ) AS Longest ORDER BY LEN(CITY) DESC, CITY ASC;