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 2
Weather Observation Station 2
Sort by
recency
|
1409 Discussions
|
Please Login in order to post a comment
SQL server : select Convert(decimal(10,2),Round(Sum(LAT_N), 2)), Convert(decimal(10,2),Round(Sum(LONG_W),2)) from STATION
MySql Server : select ROUND(sum(LAT_N), 2), ROUND(sum(LONG_W), 2) from station
FOR MY SQL TRY THIS YOU WILL GET IT - SELECT ROUND(SUM(LAT_N), 2), ROUND(SUM(LONG_W), 2) FROM STATION;
For MySQL
SELECT ROUND(SUM(LAT_N), 2), ROUND(SUM(LONG_W), 2) FROM STATION;