We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
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.
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Weather Observation Station 6
You are viewing a single comment's thread. Return to all 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.