Weather Observation Station 16

Sort by

recency

|

1108 Discussions

|

  • + 0 comments

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

  • + 0 comments

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

  • + 0 comments

    select round(lat_n, 4) from station where lat_n = (Select min(lat_n) 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(LAT_N, 4) from STATION where LAT_N > 38.7780 order by LAT_N asc limit 1;