Weather Observation Station 16

Sort by

recency

|

1117 Discussions

|

  • + 0 comments

    MS SQL server-

    SELECT CAST( ROUND (MIN(LAT_N),4) AS DECIMAL(10,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 ROUND(MIN(LAT_N),4) FROM STATION WHERE LAT_N > 38.7780 GROUP BY LAT_N ORDER BY LAT_N ASC LIMIT 1;

  • + 0 comments

    If you were using SQL Server, try switching to MySQL - it work it for me

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