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
|
1007 Discussions
|
Please Login in order to post a comment
select round(min(lat_n),4) from station where lat_n>38.7780;
SELECT ROUND(MIN(STATION.LAT_N), 4) FROM STATION WHERE STATION.LAT_N > 38.7780;
mysql:
select round(min(lat_n),4) from station where lat_n >38.7780
MySQL: SELECT ROUND(LAT_N,4) FROM STATION WHERE LAT_N>38.7780 ORDER BY LAT_N ASC LIMIT 1;