You are viewing a single comment's thread. Return to all comments →
with tmp as ( select lat_n , row_number() over () as num from station order by lat_n ) select round(lat_n, 4) from tmp where num = (select max(num) from tmp) div 2 + 1
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 →