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.
Weather Observation Station 15
Weather Observation Station 15
Sort by
recency
|
2193 Discussions
|
Please Login in order to post a comment
select round(LONG_W, 4) from STATION where LAT_N < 137.2345 order by LAT_N DESC limit 1;
SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N < 137.2345 GROUP BY LAT_N, LONG_W ORDER BY LAT_N DESC LIMIT 1;
MySQL
SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N = (SELECT MAX(LAT_N) AS Maximum FROM STATION WHERE LAT_N < 137.2345);
SELECT CAST(ROUND(long_w, 4) AS DECIMAL(10,4)) FROM station WHERE lat_n = ( SELECT MAX(lat_n) FROM station WHERE lat_n < 137.2345 );
OUTPUT: 117.2465