Weather Observation Station 6

  • + 0 comments

    SELECT DISTINCT CITY FROM STATION WHERE CITY LIKE 'A%' OR CITY LIKE 'E%' OR CITY LIKE 'I%' OR CITY LIKE 'O%' OR CITY LIKE 'U%'; The LIKE operator in SQL is used for pattern matching within strings. In this query, LIKE is employed to check whether the CITY column values begin with specific vowels. The % symbol in SQL is a wildcard used with the LIKE operator. It represents zero or more characters, allowing you to match patterns with flexible lengths.