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