Weather Observation Station 2

Sort by

recency

|

1399 Discussions

|

  • + 0 comments

    select round(sum(lat_n),2),round(sum(long_w),2) from station

  • + 0 comments

    Working only my sql:

    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 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;