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 16
Weather Observation Station 16
Sort by
recency
|
1085 Discussions
|
Please Login in order to post a comment
MySQL
SELECT ROUND(LAT_N, 4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N LIMIT 1;
select cast(round(min(lat_n),5,1) as decimal(18,4)) from station where lat_n > 38.7780;
this is for mssql. only when i change the value to 5 at round() that this works. i know the reasons why but i simply dunno how to explain. sorry.
For MS SQL Server
OR
My answer: