You are viewing a single comment's thread. Return to all comments →
SET NOCOUNT ON;
select distinct top 1 city,len(city) from STATION ORDER BY LEN(CITY) ASC, CITY ASC
select distinct top 1 city,len(city) from STATION order by LEN(CITY) DESC, CITY DESC;
go
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 →
SET NOCOUNT ON;
select distinct top 1 city,len(city) from STATION ORDER BY LEN(CITY) ASC, CITY ASC
select distinct top 1 city,len(city) from STATION order by LEN(CITY) DESC, CITY DESC;
go