Query the list of CITY names starting and ending with vowels (a, e, i, o, u) from STATION. Your result cannot contain duplicates. code example
Example: query string starts with vowels
select city from station where city REGEXP "^[aeiou].*";
select city from station where city REGEXP "^[aeiou].*";