I want to query the list of CITY names from the table STATION(id, city, longitude, latitude) which have vowels as both their first and last charact
CITY
STATION(id, city, longitude, latitude)
In MSSQL, this could be the way:
select distinct city from station where right(city,1) in ('a', 'e', 'i', 'o','u') and left(city,1) in ('a', 'e', 'i', 'o','u')