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 19
Weather Observation Station 19
Sort by
recency
|
2192 Discussions
|
Please Login in order to post a comment
Best Solution 😁😎
select cast( sqrt( power((max(lat_n) - min(lat_n)),2) + power((max(long_w) - min(long_w)),2) ) as decimal(10,4)) from station;
SELECT ROUND(SQRT(POWER(MAX(LAT_N) - MIN(LAT_N), 2) + POWER(MAX(LONG_W) - MIN(LONG_W), 2)), 4) AS Euclidean_Distance FROM STATION;
SELECT ROUND(SQRT(POWER(MAX(lat_n) - MIN(lat_n), 2) + POWER((MAX(long_w) - MIN(long_w)), 2)), 4) FROM station;