Weather Observation Station 20

  • + 0 comments
    WITH indexed AS( 
        SELECT LAT_N , ROW_NUMBER() OVER(ORDER BY LAT_N ASC) AS idx 
        FROM STATION 
    ) 
    select round(lat_n,4) 
    from indexed 
    where idx =(select (count(*)+1)/2 from station);