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 18
Weather Observation Station 18
Sort by
recency
|
2516 Discussions
|
Please Login in order to post a comment
Oracle sample with cte for readability
SELECT round(MAX(LAT_N) - MIN(LAT_N) + MAX(LONG_W) - MIN(LONG_W) ,4) FROM STATION
select round( max(LONG_W)- min(LONG_W) + max(lat_n)- min(lat_n),4) from STATION;