Weather Observation Station 18

Sort by

recency

|

2336 Discussions

|

  • + 0 comments

    SELECT ABS(ROUND((MIN(LAT_N) - MAX(LAT_N) ) + ( MIN(LONG_W) - MAX(LONG_W) ),4)) FROM STATION;

  • + 0 comments

    select round(abs(min(lat_n)-max(lat_n))+abs(min(long_w)-max(long_w)),4) from station

  • + 0 comments

    select round(abs(min(lat_n)-max(lat_n))+abs(min(long_w)-max(long_w)),4) from station

  • + 0 comments

    select round(abs(max(lat_n) - min(lat_n)) + abs(max(long_w) - min(long_w)),4) from station;

  • + 0 comments

    SELECT ROUND((MAX(LAT_N)-MIN(LAT_N))+(MAX(LONG_W)-MIN(LONG_W)),4) FROM STATION;