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
|
1314 Discussions
|
Please Login in order to post a comment
Select CAST(MAX(LAT_N) AS DECIMAL(10, 4)) From Station WHere LAT_N < 137.2345;
select truncate(max(lat_n),4) from station where lat_n<137.2345;
SELECT TRUNCATE(MAX(STATION.LAT_N), 4) FROM STATION WHERE STATION.LAT_N < 137.2345;
SELECT TRUNCATE(LAT_N,4) FROM STATION WHERE LAT_N <137.2345 GROUP BY LAT_N ORDER BY LAT_N DESC LIMIT 1;
mysql: