We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Weather Observation Station 15
Weather Observation Station 15
Sort by
recency
|
2164 Discussions
|
Please Login in order to post a comment
SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N < 137.2345 ORDER BY LAT_N DESC limit 1;
select round(long_w,4) from station where lat_n = (select max(lat_n) from station where lat_n < 137.2345);
/* pilih long_w dengan 4 angka dibelakang koma dimana nilai maksimal lat_n lebih kecil dari 137.2345 artinya kita mencari nilai yang sejajar antara keduanya */
mySQL
select round(long_w, 4)
from station
where lat_n in (select max(lat_n) from station where lat_n < 137.2345)
SELECT ROUND(MAX(LONG_W),4) FROM STATION WHERE LAT_N= (SELECT MAX(LAT_N) FROM STATION WHERE LAT_N<137.2345);
MySQL :
SELECT ROUND(LONG_W,4) AS Western_Longitude FROM STATION WHERE LAT_N=(SELECT MAX(LAT_N) FROM STATION WHERE LAT_N < 137.2345);