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 14
Weather Observation Station 14
Sort by
recency
|
1411 Discussions
|
Please Login in order to post a comment
select round(LAT_N, 4) from STATION where LAT_N < 137.2345 order by LAT_N desc limit 1;
SELECT CAST(TRUNCATE(MAX(LAT_N), 4) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N < 137.2345;
SELECT TRUNCATE(MAX(lat_n), 4) FROM station WHERE lat_n <137.2345;**
TRY THIS IT IS EASY AND HELPFUL
SELECT ROUND(MAX(LAT_N),4) FROM STATION WHERE LAT_N<137.2345;
SELECT TRUNCATE(LAT_N,4) FROM station WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC LIMIT 1;