Weather Observation Station 15

Sort by

recency

|

2220 Discussions

|

  • + 0 comments

    SELECT CAST(ROUND(LONG_W,4) AS NUMERIC(20,4)) FROM Station WHERE LAT_N=( SELECT MAX(LAT_N) FROM Station WHERE LAT_N<137.2345 );

  • + 1 comment

    select round(LONG_W,4) from STATION where LAT_N<137.2345 order by LAT_N desc limit 1;

  • + 0 comments

    SELECT ROUND(LONG_W, 4) FROM STATION WHERE LAT_N = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);

  • + 0 comments

    SELECT DECIMAL(ROUND(LONG_W, 4), 10, 4) FROM STATION WHERE LAT_N = (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);

  • + 1 comment

    was it difficult to understand the problem or am i the only one who face this?