Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Our 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].*";