Monday, 25 March 2019

Weather Observation Station 16 HackerRank SQL Solution

Problem:-

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:
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;

1 comment:

  1. Even I have written the same query... but, it is not working

    ReplyDelete

Error While embed the video in Your website page

Error:- Refused to display '<URL>' in a frame because it set 'X-Frame-Options' to 'sameorigin Solution:- if ...