Weather Observation Station 16

Sort by

recency

|

976 Discussions

|

  • + 0 comments

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

  • + 0 comments

    SELECT CAST(MIN(LAT_N) as DECIMAL(10,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

    "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;