Weather Observation Station 14

Sort by

recency

|

1332 Discussions

|

  • + 0 comments

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

  • + 0 comments

    MySQL:

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

  • + 0 comments

    select round(max(lat_n),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

    MySQL Solution:

    select ROUND(max(LAT_N),4) as greatest_values from station where LAT_N < 137.2345;