SQL query to check if a name begins and ends with a vowel

后端 未结 25 1142
臣服心动
臣服心动 2020-11-30 23:16

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

25条回答
  •  半阙折子戏
    2020-12-01 00:13

    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*;
    

提交回复
热议问题