SELECT DISTINCT CITY
FROM STATION
WHERE CITY LIKE '[AEIOU]%' and CITY LIKE '%[aeiou]';
select distinct city
from station
where substring(city,len(city),1) in ('a','e','u','o','i')
order by city;
SELECT DISTINCT CITY
FROM STATION
WHERE CITY regexp '^[AEIOU]%' and CITY regexp '[aeiou]$';