Weather Observation Station 12

Sort by

recency

|

2463 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 NOT REGEXP "^[aeiou]" AND city NOT REGEXP "[aeiou]$";

  • + 0 comments

    SELECT DISTINCT city FROM station WHERE city NOT REGEXP "^[aeiou]" AND city NOT REGEXP "[aeiou]$";

  • + 1 comment

    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

    Weather Observation Station 12 sounds like a useful setup for tracking real-time weather data. It helps improve forecasts and gives better insight into local climate conditions. Great effort in sharing weather-related information.