Weather Observation Station 13

Sort by

recency

|

1555 Discussions

|

  • + 0 comments

    SELECT ROUND(SUM(LAT_N),4) AS SAL FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345

  • + 0 comments

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

  • + 0 comments

    SELECT ROUND(SUM(LAT_N),4) FROM STATION WHERE LAT_N BETWEEN 38.7880 and 137.2345

  • + 0 comments

    Guys dont Make it complicate!! Here Go easy for it SELECT TRUNCATE(SUM(LAT_N),4) FROM STATION WHERE LAT_N>38.7880 AND LAT_N<137.2345;

  • + 0 comments

    SELECT CAST(Lat AS DECIMAL(10,4)) AS sum_latitude FROM ( SELECT SUM(LAT_N) AS Lat FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345 ) AS ABC;