Weather Observation Station 20

  • + 1 comment

    Why does this not work?

    select round(s.lat_n,4) from (
        SELECT lat_n 
    		FROM station
    		ORDER BY lat_n
    		limit (select ceil(count(*) / 2) from station)) as s
    order by s.lat_n desc limit 1 ;