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
|
993 Discussions
|
Please Login in order to post a comment
For MySQL
MY SQL:
select round(min(lat_n), 4) from station where lat_n > 38.7780;
SELECT ROUND(LAT_N,4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N ASC LIMIT 1;
select format(round(min(lat_n), 4), '0.####') from station where lat_n > 38.7780
this is ms sql server
select round(min(LAT_N),4) from STATION where LAT_N > 38.7780