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 13
Weather Observation Station 13
Sort by
recency
|
1680 Discussions
|
Please Login in order to post a comment
MySQL
SELECT ROUND(SUM(LAT_N), 4) FROM STATION WHERE LAT_N BETWEEN 38.7880 AND 137.2345;
Why this is not working in MY SQL Server - SELECT ROUND(SUM(LAT_N),4) FROM STATION WHERE LAT_N > 38.7880 AND LAT_N < 137.2345;
MS SQL Server
SELECT CAST(SUM(lat_n) AS DECIMAL(10,4)) FROM station WHERE lat_n > 38.7880 AND lat_n <137.2345
select cast(round(sum(LAT_N),4,1) as decimal(18,4)) from station where LAT_N > 38.7880 and LAT_N < 137.2345 ;
select truncate(sum(lat_n),4) from station where lat_n between '38.7880' and '137.2345' ;