Weather Observation Station 12

Sort by

recency

|

2323 Discussions

|

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY NOT REGEXP '^[AEIOU]' AND CITY NOT REGEXP '[AEIOU]$';

  • + 0 comments

    select distinct(city) from station where city regexp "^[^aeiou].*[^aeiou]$";

  • + 0 comments

    SELECT DISTINCT city FROM station WHERE LOWER(LEFT(city, 1)) NOT IN ('a', 'e', 'i', 'o', 'u') AND LOWER(RIGHT(city, 1)) NOT IN ('a', 'e', 'i', 'o', 'u');

  • + 0 comments

    mysql

    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

    MYSQL

    SELECT DISTINCT CITY FROM Station WHERE SUBSTR(LOWER(CITY), 1, 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(LOWER(CITY), LENGTH(city), 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(UPPER(CITY), 1, 1) NOT IN ('a', 'e', 'i', 'o', 'u') AND SUBSTR(UPPER(CITY), LENGTH(city), 1) NOT IN ('a', 'e', 'i', 'o', 'u');