Weather Observation Station 17

Sort by

recency

|

1220 Discussions

|

  • + 0 comments

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

  • + 0 comments

    ms sql server:

    select format(round(long_w, 4), '0.####') from station where lat_n in (select min(lat_n) from station where lat_n > 38.7780)

  • + 0 comments

    for MySQL: SELECT round(LONG_W,4) FROM STATION WHERE LAT_N>38.7780 order by lat_N limit 1;

  • + 0 comments

    select round(LONG_W,4) from station where LAT_N in (select min(LAT_N) from station where LAT_N >38.7780);

  • + 0 comments

    select round(LONG_W,4) from station where LAT_N in (select min(LAT_N) from station where LAT_N >38.7780);