Skip to main content

Weather Observation Station 15 Hackerrank Solution - SQL

 Weather Observation Station 15 Hackerrank Solution - SQL

For explanation watch video ::



Code::

select round(long_w,4) from station

where

lat_n = (select max(lat_n) from station where lat_n<137.2345);

Comments