[hackerrank] Prepare > SQL > Aggregation > Weather Observation Station 14
[문제]
Query the greatest value of the Northern Latitudes (LAT_N) from STATION that is less than . Truncate 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]
[ORCALE]
select round(max(lat_n),4)
from station
where lat_n < 137.2345;
반응형
'HackerRank > SQL' 카테고리의 다른 글
[hackerrank] Weather Observation Station 16 (0) | 2022.09.06 |
---|---|
[hackerrank] Weather Observation Station 15 (0) | 2022.08.31 |
[hackerrank] Weather Observation Station 13 (0) | 2022.08.31 |
[hackerrank] Weather Observation Station 2 (0) | 2022.08.31 |
[hackerrank] Top Earners (0) | 2022.08.31 |