Weather Observation Station 10

Sort by

recency

|

2242 Discussions

|

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE NOT REGEXP_LIKE (lower(city),'^(a|e|i|o|u)');

  • + 0 comments

    "This is a helpful exercise for learning how to filter and refine query results in SQL. Funinexchange247 Login Registration

  • + 0 comments

    select distinct CITY from STATION where not right(CITY, 1) in ('a','e','i','o','u');

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE LOWER(RIGHT(CITY,1)) NOT IN ('a','e','i','o','u');

  • + 0 comments
    SELECT distinct CITY from STATION WHERE CITY not REGEXP '[a,e,i,o,u]$';