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
|
1407 Discussions
|
Please Login in order to post a comment
SELECT TRUNCATE(LAT_N,4) FROM station WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC LIMIT 1;
select round(max(LAT_N),4) from STATION where LAT_N < 137.2345;
OR
select truncate(max(LAT_N),4) from STATION where LAT_N < 137.2345;
select round(max(LAT_N),4) from STATION where LAT_N < 137.2345;
OR
select truncate(max(LAT_N),4) from STATION where LAT_N < 137.2345;
select cast(Round(max(lat_n),4) as decimal(10,4)) from station where lat_n <137.2345;
For MySQL Platform
In MySQL, there is separate funtion for truncating a decimal unlike ROUND function in other platforms. And that function is TRUNCATE