Weather Observation Station 16

Sort by

recency

|

1070 Discussions

|

  • + 0 comments

    SELECT ROUND(MIN(lat_n), 4) FROM station WHERE lat_n > 38.778

  • + 0 comments

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

  • + 0 comments

    MY_SQL.

    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 LIMIT 1 ;

  • + 0 comments

    select cast(round(min(lat_n),4) as decimal(10,4)) from station where lat_n >38.7780