day 1: SQLQuries
This commit is contained in:
commit
0b39b98a93
4
NoVowel.sql
Normal file
4
NoVowel.sql
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
SELECT DISTINCT CITY
|
||||||
|
FROM STATION
|
||||||
|
WHERE LOWER(SUBSTRING(CITY, 1, 1)) NOT IN ('a', 'e', 'i', 'o', 'u')
|
||||||
|
AND LOWER(SUBSTRING(CITY, -1, 1)) NOT IN ('a', 'e', 'i', 'o', 'u');
|
||||||
Loading…
Reference in New Issue
Block a user