Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Product Demand
- 파이썬
- 웨어하우스 보관 최적화
- MySQL
- leetcode
- oracle
- 프로그래머스
- kaggle
- eda
- ABC Analysis
- 신경쓰기의 기술
- ProfileReport
- 피그마인디언
- HackerRank
- tensorflow
- 데이터분석
- SKU Consolidation
- forecast
- TensorFlowGPU
- MS SQL Server
- 코딩테스트
- ModelCheckPoint
- SQL
- 코딩테스트연습
- Labor Management System
- 딥러닝
- Gaimification
- Inventory Optimization
- pandas profiling
- 당신의 인생이 왜 힘들지 않아야 한다고 생각하십니까
Archives
- Today
- Total
오늘도 배운다
Weather Observation Station 8 / HackerRank, SQL, MySQL 본문
코딩테스트연습(SQL)
Weather Observation Station 8 / HackerRank, SQL, MySQL
LearnerToRunner 2022. 12. 1. 19:21문제
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates.
Input Format
The STATION table is described as follows:

제출답안(MySQL)
SELECT DISTINCT(city) FROM station
WHERE city REGEXP '^[aeiou].*[aeiou]$'
문제 바로가기(MySQL)
728x90
'코딩테스트연습(SQL)' 카테고리의 다른 글
| Weather Observation Station 10 / HackerRank, SQL, MySQL (0) | 2022.12.01 |
|---|---|
| Weather Observation Station 9 / HackerRank, SQL, MySQL (0) | 2022.12.01 |
| Weather Observation Station 7 / HackerRank, SQL, MySQL (0) | 2022.11.30 |
| Weather Observation Station 6 / HackerRank, SQL, MySQL (0) | 2022.11.30 |
| Weather Observation Station 5 / Hacker Rank, SQL, MySQL (0) | 2022.11.30 |
Comments