Weather Observation Station 16-MySQL HackerRank Solution

0

Query the smallest Northern Latitude (LAT_N) from STATION that is greater than 38.7780 . Round your answer to 4  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.


Solution

 

 
  
SELECT ROUND(MIN(LAT_N),4) 

  FROM STATION 

  WHERE LAT_N>38.7780


 

SELECT is the SQL keyword that lets the database know that you want to retrieve data


ROUND() function in MySQL is used to round a number to a specified number of decimal places. If no specified number of decimal places is provided for round off, it rounds off the number to the nearest integer.

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !