You are viewing a single comment's thread. Return to all comments →
Here's my solution ... please share your thoughts ...
with cols as ( select lat_n, ROW_NUMBER() OVER (ORDER BY lat_n) AS row_num from station ) select round(lat_n,4) from cols where row_num = (select ceil(count(lat_n)/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 →
Here's my solution ... please share your thoughts ...