Weather Observation Station 12

Sort by

recency

|

2300 Discussions

|

  • + 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

    For MySQL

    SELECT DISTINCT city FROM station
    WHERE
        SUBSTR(city, 1, 1) NOT IN ("a","e","i","o","u")
        AND
        SUBSTR(city, -1) NOT IN ("a","e","i","u","o");
    
  • + 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 city regexp '^[^aeiou].*[^aeiou]$'

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