これを試してください:)
mysqlコード....単純なもの
select CITY,LENGTH(CITY) from STATION order by Length(CITY) asc, CITY limit 1;
select CITY,LENGTH(CITY) from STATION order by Length(CITY) desc, CITY limit 1;
編集:
上記の解決策はアルファベット順に並べ替えられないため、私には機能しません。 @omotto
のコメントによる 以下はそれを機能させるための適切な方法です。 SQL Serverで試しましたが、機能します。
select top 1 city, len(city) from station order by len(city) ASC, city ASC;
select top 1 city, len(city) from station order by len(city) DESC, city ASC;