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
+ 0 comments --MYSQL--
SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780
+ 0 comments select round(min(LAT_N),4) from STATION where LAT_N>38.7780;
+ 0 comments Below is the SQL server Query for problem statement
select CAST(MIN(LAT_N) as decimal(10,4)) FROM STATION WHERE lat_n > 38.7780 ;
+ 0 comments MySql Solution
Select Min(Round((Lat_n),4)) From Station where Round((Lat_n),4) >38.7780;
+ 0 comments MS SQL solution:
SELECT CAST(MIN(LAT_N) AS DECIMAL(10,4)) FROM STATION WHERE LAT_N > 38.7780
Load more conversations
Sort 771 Discussions, By:
Please Login in order to post a comment