혜온의 이것저것

[HackerRank] Weather Observation Station 11 (MySQL) 본문

Data Analysis/SQL

[HackerRank] Weather Observation Station 11 (MySQL)

혜온 :) 2022. 8. 9. 10:57

https://www.hackerrank.com/challenges/weather-observation-station-11/problem?isFullScreen=true 

 

Weather Observation Station 11 | HackerRank

Query a list of CITY names not starting or ending with vowels.

www.hackerrank.com

 

문제

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.

Input Format

The STATION table is described as follows:

where LAT_N is the northern latitude and LONG_W is the western longitude.

 

풀이
select distinct city from station
where (city not like 'a%' 
and city not like 'e%'
and city not like 'i%'
and city not like 'o%'
and city not like 'u%')
or( city not like '%a'
and city not like '%e'
and city not like '%i'
and city not like '%o'
and city not like '%u')
Comments