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 15
Weather Observation Station 15
Sort by
recency
|
2204 Discussions
|
Please Login in order to post a comment
MYSQL select round(long_w,4) from station where (lat_n)= ( select max(lat_n)from station where lat_n <137.2345 );
In MS Sql server:
select Format(LONG_W, '0.####') from station where LAT_N = (select max(LAT_N) from station where LAT_N < 137.2345)
IN MYSQL
SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N<137.2345 ORDER BY LAT_N DESC LIMIT 1 ;
SELECT TOP 1 CAST(LONG_W AS DECIMAL(10,4)) FROM STATION WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC
SELECT cast(ROUND(LONG_W, 4) as decimal(10,4)) FROM STATION WHERE LAT_N <137.2345 ORDER BY LAT_N DESC LIMIT 1;