how to query the column in sql with names beginning with vowels code example
Example: query string starts with vowels
select city from station where city REGEXP "^[aeiou].*";
select city from station where city REGEXP "^[aeiou].*";