We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
The queries we write for this challenge are meant to return the city with the longest name and the city with the shortest name (with city name sort order as a tie breaker).
The "limit 1" here is so that each query only returns the first result, thus returning the longest and shortest city names.
Weather Observation Station 5
You are viewing a single comment's thread. Return to all comments →
can you please tell me why do you add the limit 1 part?
The queries we write for this challenge are meant to return the city with the longest name and the city with the shortest name (with city name sort order as a tie breaker). The "limit 1" here is so that each query only returns the first result, thus returning the longest and shortest city names.