Weather Observation Station 16

Sort by

recency

|

1025 Discussions

|

  • + 0 comments

    MySQL:

    SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780

  • + 0 comments
    select round(min(LAT_N),4) from STATION where LAT_N > 38.7780
    
  • + 0 comments

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

  • + 0 comments
    MY SQL

    SELECT ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780

  • + 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;