You are viewing a single comment's thread. Return to all comments →
WITH cte AS ( (SELECT city, LENGTH(city) FROM STATION ORDER BY LENGTH(city) ASC, city ASC LIMIT 1) UNION ALL (SELECT city, LENGTH(city) FROM STATION ORDER BY LENGTH(city) DESC LIMIT 1) ) SELECT * FROM cte
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 →