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
|
976 Discussions
|
Please Login in order to post a comment
Select round(min(lat_n),4) from station where lat_n>38.7780 order by lat_n asc limit 1;
SELECT CAST(MIN(LAT_N) as DECIMAL(10,4)) FROM STATION WHERE LAT_N > 38.7780
SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780
"MySQL"
SELECT ROUND(MIN(lat_n),4) FROM Station WHERE lat_n > 38.7780;
select round(min(LAT_N),4) from station where LAT_N > 38.7780;