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
|
2062 Discussions
|
Please Login in order to post a comment
SELECT ROUND(LONG_W, 4) AS LONG_W FROM STATION WHERE LAT_N = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);
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 order by lat_n desc limit 1
SELECT ROUND(STATION.LONG_W, 4) AS Rounded_Longitude FROM STATION WHERE STATION.LAT_N = (SELECT MAX(STATION.LAT_N) FROM STATION WHERE STATION.LAT_N < 137.2345);