Weather Observation Station 2

Sort by

recency

|

1409 Discussions

|

  • + 0 comments

    SQL server : select Convert(decimal(10,2),Round(Sum(LAT_N), 2)), Convert(decimal(10,2),Round(Sum(LONG_W),2)) from STATION

  • + 0 comments

    MySql Server : select ROUND(sum(LAT_N), 2), ROUND(sum(LONG_W), 2) from station

  • + 0 comments

    FOR MY SQL TRY THIS YOU WILL GET IT - SELECT ROUND(SUM(LAT_N), 2), ROUND(SUM(LONG_W), 2) FROM STATION;

  • [deleted]
    + 0 comments

    For MySQL

    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;