문제) Leetcode - SQL - Rising Temperature
https://leetcode.com/problems/rising-temperature/
전날보다 높은 기온을 가지는 날을 찾는 문제였습니다. w1과 w2 두 개의 테이블을 이용하여 temperature의 비교와 datediff를 이용하여 해결합니다.
풀이)
select w1.id
from Weather w1, Weather w2
where w1.temperature> w2.temperature and datediff(w1.recordDate, w2.recordDate) = 1;
반응형
'Develop > Database' 카테고리의 다른 글
[Leetcode] 620. Not Boring Movies (MySQL) 문제 및 풀이 (0) | 2021.12.23 |
---|---|
[Leetcode] 595. Big Countries (MySQL) 문제 및 풀이 (0) | 2021.12.22 |
[프로그래머스] SQL 고득점 Kit - 이름에 el이 들어가는 동물 찾기 (MySQL) 문제 및 풀이 (0) | 2021.12.20 |
[프로그래머스] SQL 고득점 Kit - 입양 시각 구하기(1) (MySQL) 문제 및 풀이 (0) | 2021.12.19 |
[Leetcode] 183. Customers Who Never Order (MySQL) 문제 및 풀이 (0) | 2021.12.16 |
댓글