Weather Observation Station 16

Sort by

recency

|

1129 Discussions

|

  • + 0 comments

    SELECT DECIMAL (Round(min(Lat_N),4),10,4) FROM station where Lat_N>38.7780 ;

  • + 0 comments

    /* Enter your query here. */

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

  • + 0 comments
    SELECT ROUND(LAT_N, 4) AS Result
    FROM STATION
    WHERE LAT_N > 38.7780
    ORDER BY LAT_N ASC
    LIMIT 1
    
  • + 0 comments

    SELECT Round(min(Lat_N),4) FROM station where Lat_N>38.7780 ;

    EASY SOLUTION

  • + 0 comments

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