Weather Observation Station 13

Sort by

recency

|

1701 Discussions

|

  • + 0 comments

    select round(sum(LAT_N), 4) from STATION where LAT_N > 38.7880 AND LAT_N < 137.2345;

  • + 0 comments

    select round(sum(case when lat_n > 38.7880 and lat_n < 137.2345 then lat_n else 0 end), 4) as sum_lat_n from station

  • + 0 comments

    SELECT ROUND(SUM(LAT_N),4)

    FROM STATION

    WHERE LAT_N BETWEEN 38.7880 AND 137.2345;

  • + 0 comments

    select round(sum(LAT_N),4) from station where LAT_N < 137.2345 and LAT_N>38.7880;

  • + 0 comments

    SELECT CAST(ROUND(SUM(lat_n), 4, 1) AS DECIMAL(10,4)) FROM station WHERE lat_n > 38.7880 AND lat_n < 137.2345;