While implementing the below query:
select distinct(city)
from station
where substr(distinct(city),1,1) IN ['A','E','I','O','U'];
I get the following error:
ERROR at line 1: ORA-00936: missing expression
Using Oracle Sql. I am still a beginner to using SQL so just can't figure this one out