You are viewing a single comment's thread. Return to all comments →
MySQL using variables:
SET @P1a = (SELECT MIN(LAT_N) FROM STATION); SET @P1b = (SELECT MIN(LONG_W) FROM STATION); SET @P2c = (SELECT MAX(LAT_N) FROM STATION); SET @P2d = (SELECT MAX(LONG_W) FROM STATION); SELECT ROUND(ABS(@P1a - @P2c) + ABS(@P1b - @P2d), 4);
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 18
You are viewing a single comment's thread. Return to all comments →
MySQL using variables: