Weather Observation Station 2

Sort by

recency

|

1513 Discussions

|

  • + 0 comments

    ** WORKING CODE SELECT CAST(ROUND(SUM(LAT_N), 2) AS DECIMAL(10,2)), CAST(ROUND(SUM(LONG_W), 2) AS DECIMAL(10,2)) FROM STATION;

  • + 0 comments

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

  • + 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;****