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.
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
*/
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 15
You are viewing a single comment's thread. Return to all comments →
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 */