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
Sort by
recency
|
1430 Discussions
|
Please Login in order to post a comment
SELECT Convert(numeric(10,2), Sum(Lat_N)) AS Number, Convert(numeric(10,2), Sum(Long_W)) AS Number FROM STATION;
SELECT TO_CHAR(ROUND(SUM(LAT_N), 2), '99990.00') || ' ' || TO_CHAR(ROUND(SUM(LONG_W), 2), '99990.00') AS "lat lon" FROM Station;
This is the correct answer
select round(sum(lat_n),2),round(sum(long_w),2) from station;
SELECT ROUND(SUM(STATION.LAT_N), 2) AS SUM_LAT_N, ROUND(SUM(STATION.LONG_W), 2) AS SUM_LONG_W FROM STATION;
SELECT ROUND(CAST(SUM(LAT_N) AS FLOAT), 2) AS lat, ROUND(CAST(SUM(LONG_W) AS FLOAT), 2) AS lon FROM STATION;