Weather Observation Station 8 query in SQL – Hacker Rank Solution

 


Problem

Query the list of CITY names from STATION which have vowels (i.e., aeio, and u) as both their first and last characters. Your result cannot contain duplicates.

Input Format

The STATION table is described as follows:

where LAT_N is the northern latitude and LONG_W is the western longitude.

Weather Observation Station 8 query in SQL – Hacker Rank Solution

Code: 

SELECT DISTINCT CITY FROM STATION WHERE CITY REGEXP '^[aeiou].*[aeiou]$';


Disclaimer: The above Problem (Weather Observation Station 8 query in SQL ) generated by Hackerrank but the Solution is Provided by MultiplexCoder. This tutorial is only for Educational and Learning purposes.

Tags:    hackerrank sql questions and answers | big companies hackerrank sql solutions | student analysis sql hackerrank solution | challenges sql hackerrank solution | hackerrank sql basic certification solutions | product amount details hackerrank solution | hackerrank sql basic join solutions | hackerrank-sql certification solutions | 2021 | new

Previous
Next Post »