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
|
1117 Discussions
|
Please Login in order to post a comment
MS SQL server-
SELECT CAST( ROUND (MIN(LAT_N),4) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N > 38.7780;
SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780 GROUP BY LAT_N ORDER BY LAT_N ASC LIMIT 1;
If you were using SQL Server, try switching to MySQL - it work it for me