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 2
Weather Observation Station 2
+ 0 comments Select cast(sum(lat_n) as numeric (16,2)), cast(sum(long_w) as numeric (16,2)) from station;
+ 0 comments SELECT ROUND(SUM(LAT_N), 2), ROUND(SUM(LONG_W), 2) FROM STATION
+ 0 comments using cte in MySQL: with cte as ( select sum(LAT_N) as lat_n ,sum(LONG_W) as long_w from STATION ) select round(cte.lat_n,2) ,round(cte.long_w,2) from cte;
+ 0 comments select round(sum(lat_n),2) , round(sum(long_w),2) from station
+ 1 comment IN Microsoft SQl SELECT CAST(SUM(LAT_N) AS DECIMAL(18,2)), CAST(SUM(LONG_W) AS DECIMAL(18,2)) FROM STATION ;
Load more conversations
Sort 964 Discussions, By:
Please Login in order to post a comment