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.
select city,length(city) as length_max from station
where length(city) = (max(length(city))from station);
select city,length(city) as length_min from station
where length(city)= (min(length(city)) from station);
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Waiter
You are viewing a single comment's thread. Return to all comments →
select city,length(city) as length_max from station where length(city) = (max(length(city))from station); select city,length(city) as length_min from station where length(city)= (min(length(city)) from station);