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
|
1422 Discussions
|
Please Login in order to post a comment
select round(max(lat_n), 4) from station where lat_n < 137.2345;
SELECT ROUND(LAT_N,4) FROM (SELECT LAT_N FROM STATION ORDER BY LAT_N DESC) as LAT_N_MAX WHERE LAT_N < 137.2345 LIMIT 1;
MS SQL SERVER
SELECT CAST(ROUND(MAX(LAT_N), 4) AS DECIMAL(10,4)) AS Great_Lat FROM STATION WHERE LAT_N < 137.2345;
Why is my query not truncating? Getting all the values after the decimal and hence, query is failing.
SELECT TRUNCATE(MAX(LAT_N)) FROM STATION WHERE LAT_N<137.2345;