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
+ 0 comments SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780
+ 0 comments SELECT ROUND(MIN(LAT_N), 4) FROM STATION WHERE LAT_N >38.7780; or SELECT ROUND(LAT_N,4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N ASC LIMIT 1
+ 0 comments MS SQL SERVER
SELECT CAST(round(MIN(LAT_N),4) as numeric(12,4)) FROM STATION WHERE LAT_N > 38.7780;
+ 0 comments MY SQL SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N>38.7780;
+ 0 comments MySQL
SELECT ROUND(LAT_N,4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N ASC LIMIT 1
Load more conversations
Sort 598 Discussions, By:
Please Login in order to post a comment