- Weather Observation Station 17

 Query the Western Longitude (LONG_W)where the smallest Northern Latitude (LAT_N) in STATION is greater than . Round your answer to  decimal places.

Input Format

The STATION table is described as follows:

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


MySql:

select round(long_w,4) from station where round(lat_n,4)>38.7880 order by lat_n limit 1


Compiler Message
Success
Input (stdin)
  • INPUT
Expected Output
  • 70.1378

Post a Comment

Previous Post Next Post