We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
  • HackerRank Home

    HackerRank

  • |
  • Prepare
  • Certify
  • Compete
  • Hiring developers?
  1. Prepare
  2. SQL
  3. Aggregation
  4. Weather Observation Station 17
  5. Discussions

Weather Observation Station 17

Problem
Submissions
Leaderboard
Discussions

Sort 738 Discussions, By:

recency

Please Login in order to post a comment

  • saini_kamal12111
    3 days ago+ 0 comments

    SELECT Round(long_w,4) FROM station WHERE lat_n > 38.7780 ORDER BY lat_n ASC LIMIT 1;

    0|
    Permalink
  • surajthesun14
    4 days ago+ 0 comments

    MS SQLSERVER: select top 1 cast(long_w as numeric (16,4)) from station where lat_n > 38.7780 order by lat_n asc

    0|
    Permalink
  • Abdulrahman_zezo
    5 days ago+ 0 comments

    SELECT ROUND(LONG_W,4) FROM STATION WHERE LAT_N =( SELECT MIN(LAT_N) FROM STATION WHERE LAT_N >38.7780)

    0|
    Permalink
  • rheanna_lamph
    6 days ago+ 1 comment
    SELECT ROUND(long_w,4) FROM station WHERE lat_n > 38.7780 ORDER BY lat_n ASC LIMIT 1;
    
    0|
    Permalink
  • souravlayek55
    1 week ago+ 0 comments

    select round(long_w,4) from station

    where lat_n>38.7780 order by lat_n limit 1;

    0|
    Permalink
Load more conversations

Need Help?


View top submissions
  • Blog
  • Scoring
  • Environment
  • FAQ
  • About Us
  • Support
  • Careers
  • Terms Of Service
  • Privacy Policy