일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SELF-JOIN
- 패캠챌린지
- join
- LeetCode
- RANK
- MySQL
- 다시풀어보기
- 시계열데이터분석
- 직장인인강
- group by
- HACKER_RANK
- 파이썬을활용한시계열데이터분석
- 해커랭크
- 패스트캠퍼스
- Hard
- medium
- row_number
- 프로그래머스
- SQL
- Hackerrank
- lv.4
- 프리미엄
- recursive
- 어려웠음
- meidum
- solvesql
- 패스트캠퍼스후기
- 직장인자기계발
- easy
- 파이썬을활용한시계열데이터분석AtoZ올인원패키지Online
- Today
- Total
목록SQL/HACKER_RANK (27)
~고군분투 인생살이~

1. 문제 설명 Query the list of CITY names ending with vowels (a, e, i, o, u) from STATION. 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. 2. 문제 풀이 3. 결과 SELECT DISTINCT city FROM STSATION WHERE city REGEXO '[AEIOUaeiou]$.*'

1. 문제 설명 Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. 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. 2. 문제 풀이 이번에는 기존 like와 더불어 정규 표현식으로 해당 문제를 풀어보려고 합니다. 정규표현식에 대한 더 자세한 설명은 아래의 사이트를 참고하자. RegexOne - Learn Regular Expressions - Les..

https://www.hackerrank.com/challenges/the-report/problem?h_r=internal-search The Report | HackerRank Write a query to generate a report containing three columns: Name, Grade and Mark. www.hackerrank.com 문제 조건 GRADE LEVEL이 8보다 낮으면 이름을 NULL로 설정 이름이 NULL인 애들 중 GRADE가 같을 시 MARKS를 기준으로 ASC 정렬 GRADE는 DESC정렬 GRADE가 같을 시 이름의 알파벳 기준으로 정렬 풀이 : SELECt CASE WHEN g.grade < 8 THEN NULL ELSE s.name END as name..