Weather Observation Station 12

  • + 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");