-
Weather Observation Station 11SQL 2023. 2. 20. 18:00
Query the list of CITY names from STATION that either do not start with vowels or do not end with vowels. Your result cannot contain duplicates.
SELECT distinct(city) FROM STATION WHERE LEFT(CITY,1) NOT IN ('A','E','I','O','U') OR RIGHT(CITY,1) NOT IN ('a','e','i','o','u')
'SQL' 카테고리의 다른 글
Weather Observation Station 17 (0) 2023.03.16 Weather Observation Station 14 (0) 2023.02.23 Weather Observation Station 18 (0) 2023.02.13 Weather Observation Station 13 (0) 2023.02.13 오랜 기간 보호한 동물(2) (0) 2023.02.08