Weather Observation Station 14

Sort by

recency

|

1414 Discussions

|

  • + 0 comments

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

  • + 0 comments

    SELECT cast(round(max(lat_n),4) as decimal(10,4)) from station where lat_n<137.2345 ;

  • + 0 comments

    SELECT CAST(MAX(LAT_N) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N < 137.2345

  • + 0 comments

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

  • + 0 comments

    SELECT CAST(TRUNCATE(MAX(LAT_N), 4) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N < 137.2345;