티스토리 뷰
https://leetcode.com/problems/second-highest-salary
with base as(
select
distinct salary
, dense_rank() over (order by salary desc) rn
from employee
)
, base2 as (
select
distinct salary
, rn
, max(rn) over () mx_rn
from base
)
select
if(mx_rn >= 2, salary, null) as SecondHighestSalary
# salary as SecondHighestSalary
from base2
where if(mx_rn >= 2, rn = 2, rn = 1)
'프로그래밍연습 > SQL' 카테고리의 다른 글
[SQL]employees-earning-more-than-their-managers (0) | 2023.08.17 |
---|---|
[SQL]consecutive-numbers (0) | 2023.08.17 |
[SQL]오프라인/온라인 판매 데이터 통합하기 (0) | 2023.08.16 |
[SQL]가격대 별 상품 개수 구하기 (0) | 2023.08.15 |
[SQL]재구매가 일어난 상품과 회원 리스트 구하기 (0) | 2023.08.15 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- hash
- 평균
- 코딩테스트
- 사분위수
- 분당서울대병원
- programmers
- neural network
- 상대도수
- 파이썬
- 쿠싱
- Lambda
- 뇌하수체선종
- 뇌하수체
- random forest
- 확률
- 힙
- SQL
- TensorFlow
- leatcode
- 군고구마
- 확률분포
- 상관관계
- 쿠싱증후군
- 분산
- 조건부확률
- Python
- counter
- 중앙값
- 통계
- 프로그래머스
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함