Problem
Query the list of CITY names from STATION that do not start with vowels and do not end with vowels. 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 12 SQL – Hacker Rank Solution
Code:
SELECT DISTINCT CITY
FROM STATION
WHERE CITY REGEXP '^[^aeiouAEIOU]' AND CITY REGEXP '[^aeiouAEIOU]$';
Disclaimer: The above Problem (Weather Observation Station 12) 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 | codechef | 2021
ConversionConversion EmoticonEmoticon