We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 14
Weather Observation Station 14
Sort by
recency
|
1356 Discussions
|
Please Login in order to post a comment
select ROUND(max(case when LAT_N < 137.2345 then LAT_N end), 4) as output from station;
select round(max(LAT_N),4) from station where LAT_N < 137.2345;
For MYSQL
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
MySQL solution: