Weather Observation Station 16

  • + 0 comments

    MySQL Solution:

    select round(LAT_N,4) from station where LAT_N > 38.7780 order by LAT_N limit 1;

    Alternate solution:

    select round(min(LAT_N),4)) from station where LAT_N> 38.7780;