Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions SQL/Select/Weather Observation Station 6.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,4 @@ Write a query to print the list of CITY that start with vowels in lexicographica

--Solution

SELECT CITY
FROM STATION
WHERE CITY Like '[AEIOU]%';
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%";