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)
Try this for beginning with vowel
Oracle:
select distinct *field* from *tablename* where SUBSTR(*sort field*,1,1) IN('A','E','I','O','U') Order by *Sort Field*;