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 17
Weather Observation Station 17
Sort by
recency
|
1235 Discussions
|
Please Login in order to post a comment
select REPLACE(round(LONG_W,4),'0000','') from station where lat_n=(SELECT MIN (LAT_N) FROM STATION WHERE LAT_N>38.7780);
select round((long_w),4) from station where lat_n>38.7780 order by lat_n asc limit 1;
select round(long_w, 4) from station where lat_n >38.7780 order by lat_n asc limit 1
Select round(long_w,4)from station where lat_n=(select min(lat_n) from station where lat_n>38.7780);
SELECT ROUND(STATION.LONG_W, 4) AS ROUNDED_LONGITUDE FROM STATION WHERE STATION.LAT_N = (SELECT MIN(STATION.LAT_N) FROM STATION WHERE STATION.LAT_N > 38.7780);