Navbar menu

HackerRank SQL Solution - Basic Select - Weather Observation Station 12

  • Query the list of CITY names from STATION that does not start with vowels and do not end with vowels. Your result cannot contain duplicates.
Input Format:
  • The STATION table is described as follows:
HackerRank SQL Solution - Basic Select - Weather Observation Station 12
  • where LAT_N is the northern latitude and LONG_W is the western longitude.
Solution:

/* Editor - MySQL */

SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[^aeiou].*[^aeiou]$';
Note: The problem statement is given by hackerrank.com but the solution is generated by the Geek4Tutorial admin. We highly recommend you solve this on your own, however, you can refer to this in case of help. If there is any concern regarding this post or website, please contact us using the contact form. Thank you!

No comments:

Post a Comment