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
|
1385 Discussions
|
Please Login in order to post a comment
MS SQL Server
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' ;
You can use TRUNCATE also instead of ROUND
My answer:
SELECT TRUNCATE(MAX(LAT_N),4) FROM STATION WHERE LAT_N<137.2345;