Weather Observation Station 12

Sort by

recency

|

2411 Discussions

|

  • + 0 comments

    select distinct city from station where city NOT REGEXP '^[aeiouAEIOU].$' and city NOT REGEXP'^.[aeiouAEIOU]$'

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE UPPER(SUBSTR(CITY, 1, 1)) NOT IN ('A', 'E', 'I', 'O', 'U') AND UPPER(SUBSTR(CITY, LENGTH(CITY), 1)) NOT IN ('A', 'E', 'I', 'O', 'U');

  • + 0 comments

    select distinct city from station where city not like 'A%' and city not like 'E%' and city not like 'I%' and city not like 'O%' and city not like 'U%' and city not like '%a' and city not like '%e' and city not like '%i' and city not like '%o' and city not like '%u';

  • + 0 comments

    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')

  • + 0 comments

    select distinct city from station where regexp_like (city,'^[^AEIOU aeiou]') and regexp_like (city, '[^AEIOU aeiou]$');