You are viewing a single comment's thread. Return to all comments →
select distinct CITY from STATION where not left(CITY, 1) in ('a','e','i','o','u') and not right(CITY, 1) in ('a','e','i','o','u');
why this is not working
select distinct CITY from STATION where left(CITY, 1) not in ('a','e','i','o','u') and right(CITY, 1) not in ('a','e','i','o','u'); this also
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 11
You are viewing a single comment's thread. Return to all comments →
select distinct CITY from STATION where not left(CITY, 1) in ('a','e','i','o','u') and not right(CITY, 1) in ('a','e','i','o','u');
why this is not working
select distinct CITY from STATION where left(CITY, 1) not in ('a','e','i','o','u') and right(CITY, 1) not in ('a','e','i','o','u'); this also