Weather Observation Station 17

Sort by

recency

|

1345 Discussions

|

  • + 0 comments
    Select round(long_w, 4)
    from station
    where lat_n > 38.7780
    ORDER by lat_n 
    limit 1;
    
  • + 0 comments

    SELECT DECIMAL(ROUND(LONG_W, 4),10,4) FROM STATION WHERE LAT_N = (SELECT MIN(LAT_N) FROM STATION WHERE LAT_N > 38.7780);

  • + 1 comment

    SELECT ROUND(LONG_W,4) FROM STATION WHERE (LAT_N)>38.7780 ORDER BY LAT_N ASC LIMIT 1;

  • + 0 comments

    SELECT cast(round(long_w,4) as decimal(10,4)) from station where lat_n>38.7780 ORDER BY lat_n limit 1;

  • + 1 comment

    For MYSql: SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N > 38.7780 ORDER BY LAT_N ASC LIMIT 1;