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
|
1398 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 DECIMAL(TRUNCATE(MAX(LAT_N), 4), 10, 4) AS LAT_N FROM STATION WHERE LAT_N < 137.2345;
here why are we using truncate why we are not using max only. what exactly does truncate do?