HackerRank/SQL

[hackerrank] Weather Observation Station 12

예쁜꽃이피었으면 2022. 8. 9. 09:28

[hackerrank] Prepare > SQL > Basic Select >  Weather Observation Station 12

 

[문제]

Query the list of CITY names from STATION that do not start with vowels and 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.

 

[MYSQL]

 

 

[ORCALE]

select distinct(city)
from station
where not regexp_like(city,'^a|^e|^o|^u|^i','i')
and not regexp_like(city,'a$|e$|o$|u$|i$','i');

 

 

 

반응형