Weather Observation Station 14

Sort by

recency

|

1314 Discussions

|

  • + 0 comments

    Select CAST(MAX(LAT_N) AS DECIMAL(10, 4)) From Station WHere LAT_N < 137.2345;

  • + 0 comments

    select truncate(max(lat_n),4) from station where lat_n<137.2345;

  • + 0 comments

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

  • + 0 comments

    SELECT TRUNCATE(LAT_N,4) FROM STATION WHERE LAT_N <137.2345 GROUP BY LAT_N ORDER BY LAT_N DESC LIMIT 1;

  • + 0 comments

    mysql:

    select round(max(lat_n),4) from station where lat_n < 137.2345;