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
|
1701 Discussions
|
Please Login in order to post a comment
select round(sum(LAT_N), 4) from STATION where LAT_N > 38.7880 AND LAT_N < 137.2345;
select round(sum(case when lat_n > 38.7880 and lat_n < 137.2345 then lat_n else 0 end), 4) as sum_lat_n from station
SELECT ROUND(SUM(LAT_N),4)
FROM STATION
WHERE LAT_N BETWEEN 38.7880 AND 137.2345;
select round(sum(LAT_N),4) from station where LAT_N < 137.2345 and LAT_N>38.7880;
SELECT CAST(ROUND(SUM(lat_n), 4, 1) AS DECIMAL(10,4)) FROM station WHERE lat_n > 38.7880 AND lat_n < 137.2345;