i do this
select distinct city
from station
where regexp_like(city,'^[^aeiou].*[^aeiou]$','i') and regexp_like(city,'^[^aeiou]\w+[^aeiou]$','i');
. it is wrong i know. but can someone explain to me where i am wrong at based on the question ? any answer will appreciated. thank you.
here link screenshot from the question.