You are viewing a single comment's thread. Return to all comments →
SELECT ROUND(lat_n, 4) FROM ( SELECT lat_n, ROW_NUMBER() OVER( ORDER BY lat_n ) AS row_num FROM station ) AS sub_table WHERE row_num = (SELECT CEILING(COUNT(*) / 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 →