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
|
2220 Discussions
|
Please Login in order to post a comment
SELECT CAST(ROUND(LONG_W,4) AS NUMERIC(20,4)) 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 = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);
SELECT DECIMAL(ROUND(LONG_W, 4), 10, 4) FROM STATION WHERE LAT_N = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);
was it difficult to understand the problem or am i the only one who face this?