Weather Observation Station 13

Sort by

recency

|

1657 Discussions

|

  • + 0 comments

    MYSQL =

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

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

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

  • + 0 comments

    Query the sum of Northern Latitudes (LAT_N) from STATION having values greater than and less than . Truncate your answer to decimal places.

  • + 0 comments

    /* SELECT ROUND(SUM(LAT_N),4) AS sumlatn FROM STATION WHERE LAT_N > 38.7880 and LAT_N < 137.2345; */

    SELECT ROUND(SUM(LAT_N),4) AS MKL FROM STATION WHERE LAT_N BETWEEN 38.7880 AND 137.2345;