TECH

Weather Observation Station 16

AKA.DM 2022. 6. 20. 07:56
반응형

Query the smallest Northern Latitude (LAT_N) from STATION that is greater than . Round your answer to  decimal places.

Input Format

The STATION table is described as follows:

select round(min(lat_n), 4) 
from
    (select lat_n, long_w
     from station
     where lat_n > 38.7880);
반응형