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
|
1704 Discussions
|
Please Login in order to post a comment
select Truncate(sum(lat_n),4) from station where lat_n > 38.7880 and lat_n < 137.2345
SELECT CAST(ROUND(SUM(LAT_N),4) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N BETWEEN 38.788 AND 137.2345
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