Weather Observation Station 16

Sort by

recency

|

1050 Discussions

|

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

    SELECT TOP 1 CAST(MIN(LAT_N) AS DECIMAL(20,4)) FROM STATION WHERE LAT_N > 38.7780 GROUP BY LAT_N ORDER BY LAT_N ASC

  • + 0 comments

    MySQL solution:

    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;