HackerRank MySQL - Weather Observation Station 16
Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780. Round your answer to 4 decimal places.
- SELECT ROUND(MIN(LAT_N), 4)
- FROM STATION
- WHERE LAT_N > 38.7780;
Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780. Round your answer to 4 decimal places.
- SELECT ROUND(MIN(LAT_N), 4)
- FROM STATION
- WHERE LAT_N > 38.7780;
Codesadda.com is your home of programming solutions, tutorials, video tutorials and much more. Sign Up for our weekly newsletter to get update about new content.