Weather Observation Station 20

  • + 0 comments
    select round(a.LAT_N,4) from
    (Select 
    row_number() over (order by LAT_N) rw_nm,
    LAT_N from STATION) a
    where a.rw_nm in 
    (floor(((select count(*)total_rws from STATION)+1)/2),
    CEIL(((select count(*)total_rws from STATION)+1)/2));