Weather Observation Station 20

  • + 0 comments

    with c1 as (select , dense_rank() over (order by lat_n) as rnk from station) select round(lat_n,4) from c1 where rnk=(select (count()+1)/2 from station);