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 13
Weather Observation Station 13
Sort by
recency
|
1714 Discussions
|
Please Login in order to post a comment
SELECT round(sum(lat_n),4) from station where lat_n between 38.7881 and 137.2344
SELECT ROUND(SUM(LAT_N), 4) FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345;
MS SQL SERVER
SELECT CAST(ROUND(SUM(LAT_N),4)AS DECIMAL (10,4)) AS Sum_Lat FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345;
MySQL
SELECT ROUND(SUM(Lat_N), 4) FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345;
guys this is not the place to share the answer😄,
just discuss!