You are viewing a single comment's thread. Return to all comments →
WITH indexed AS( SELECT LAT_N , ROW_NUMBER() OVER(ORDER BY LAT_N ASC) AS idx FROM STATION ) select round(lat_n,4) from indexed where idx =(select (count(*)+1)/2 from station);
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 20
You are viewing a single comment's thread. Return to all comments →