Query the two Cities In Station With Shortest and Longest City names. | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
- 1

Query the two Cities In Station With Shortest and Longest City names.

MySQL Query

20th Jan 2022, 6:08 PM
Danish Siddiqui
2 Respuestas
0
¿What is the question? If you need help, please show your attempt first.
20th Jan 2022, 6:11 PM
CGM
CGM - avatar
0
Try to use MAX() to get longest name, and MIN() to get shortest name. SELECT MIN(city_name) AS shortest, MAX(city_name) AS longest FROM cities;
20th Jan 2022, 8:29 PM
Ipang