Weather Observation Station 2

Sort by

recency

|

1511 Discussions

|

  • + 0 comments

    For MySQL Platform

    SELECT ROUND(SUM(lat_n), 2), ROUND(SUM(long_w), 2) FROM station;
    
  • + 0 comments
    SELECT ROUND(SUM(LAT_N),2),ROUND(SUM(LONG_W),2) FROM STATION
    
  • + 0 comments

    select round(sum(LAT_N),2), round(sum(LONG_W),2) from STATION;****

  • + 0 comments
    SELECT ROUND(SUM(LAT_N), 2), ROUND(SUM(LONG_W), 2) FROM STATION
    
  • + 0 comments

    SELECT ROUND(SUM(LAT_N), 2) AS lat, ROUND(SUM(LONG_W), 2) AS lon FROM STATION;