Weather Observation Station 17

Sort by

recency

|

1258 Discussions

|

  • + 0 comments

    WITHOUT SUB QUERY:

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

  • + 0 comments

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

  • + 0 comments
    My SQL - Using SubQuery

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

  • + 0 comments

    select round(LONG_W,4) from station where LAT_N > 38.7780 order by LAT_N Asc limit 1;

  • + 0 comments

    select rtrim(cast(round(long_w,4) as varchar),'0') from station where lat_n >38.7780 and lat_n in (select min(lat_n) from station where lat_n > 38.7780)