Weather Observation Station 14

Sort by

recency

|

1356 Discussions

|

  • + 0 comments

    select ROUND(max(case when LAT_N < 137.2345 then LAT_N end), 4) as output from station;

  • + 0 comments

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

  • + 0 comments

    For MYSQL

    SELECT 
        truncate( MAX(LAT_N),4 )
    FROM STATION
    Where
        LAT_N < 137.2345
    ;
    
  • + 0 comments

    SELECT TOP 1 CAST(MAX(LAT_N) AS DECIMAL(20,4)) FROM STATION WHERE LAT_N < 137.2345 GROUP BY LAT_N ORDER BY LAT_N DESC

  • + 0 comments

    MySQL solution:

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