You are viewing a single comment's thread. Return to all comments →
My code:
SELECT ROUND(long_w, 4) FROM station WHERE lat_n < 137.2345 ORDER BY lat_n DESC LIMIT 1;
OR
SELECT ROUND(long_w, 4) FROM station WHERE lat_n = ( SELECT MAX(lat_n) FROM station WHERE lat_n < 137.2345 ) ;
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 15
You are viewing a single comment's thread. Return to all comments →
My code:
OR
SELECT ROUND(long_w, 4) FROM station WHERE lat_n = ( SELECT MAX(lat_n) FROM station WHERE lat_n < 137.2345 ) ;