Weather Observation Station 11

Sort by

recency

|

3867 Discussions

|

  • + 0 comments

    select distinct city from station where left(city,1)not in ('a','e','i','o','u') or right(city,1) not in ('a','e','i','o','u')

  • + 0 comments

    For MySQL

    SELECT DISTINCT city FROM station
    WHERE
        LEFT(city, 1) NOT IN ("a","e","i","o","u")
        OR
        RIGHT(city, 1) NOT IN ("a","e","i","o","u");
    
  • + 0 comments

    select distinct CITY from STATION where CITY not regexp '^[aeiouAEIOU].*[aeiouAEIOU]$'

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY NOT REGEXP '^[aeiou].*[aeiou]$';

  • + 0 comments

    select distinct city from station where left(city,1) not in ('a','e','i','o','u') or right(city,1) not in ('a','e','i','o','u');