Weather Observation Station 13

Sort by

recency

|

1704 Discussions

|

  • + 0 comments

    select Truncate(sum(lat_n),4) from station where lat_n > 38.7880 and lat_n < 137.2345

  • + 0 comments
    WITH sum_lat AS (
        SELECT SUM(LAT_N) AS total_sumLat
        FROM STATION
        WHERE LAT_N > 38.7880 AND LAT_N < 137.2345
    
    )
    SELECT CAST(total_sumLat AS DECIMAL(10,4))
    FROM sum_lat;
    
  • + 0 comments

    SELECT CAST(ROUND(SUM(LAT_N),4) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N BETWEEN 38.788 AND 137.2345

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