Weather Observation Station 15

Question Link

Query the Western Longitude (LONG_W) for the largest Northern Latitude (LAT_N) in STATION that is less than 137.2345. Round your answer to 4 decimal places.

where LAT_N is the northern latitude and LONG_W is the western longitude.

SELECT ROUND(long_w,4)
FROM Station
WHERE lat_n = (SELECT MAX(lat_n) FROM Station WHERE lat_n < 137.234)

Last updated