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 16
Weather Observation Station 16
Sort by
recency
|
1077 Discussions
|
Please Login in order to post a comment
SELECT ROUND(MIN(LAT_N), 4) FROM STATION WHERE LAT_N > 38.7780; I did this but its giving me wrong answer .anyone who can help?
select top 1 cast(lat_n as decimal(10,4)) from station
where lat_n > 38.7780 order by lat_n ;
MySQL:
select round(LAT_N,4) from STATION where LAT_N >38.7780 order by LAT_N ASC LIMIT 1;
SELECT ROUND(LAT_N,4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N LIMIT 1;
Select ROUND(LAT_N,4) From STATION Where LAT_N > 38.7780 Order By LAT_N ASC Limit 1;