Answers for "find the longest and shortest name sql"

SQL
2

sql finding longest and shortest names in a fleld

# IN the example below, "CITY" is the filed, "STATION" is the Table
(SELECT CITY, LENGTH(CITY)
FROM STATION
ORDER BY LENGTH(CITY) ASC, CITY ASC LIMIT 1)
UNION
(SELECT CITY, LENGTH(CITY)
FROM STATION
ORDER BY 
LENGTH(CITY) DESC, CITY DESC LIMIT 1)
Posted by: Guest on July-06-2020

Code answers related to "find the longest and shortest name sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language