본문 바로가기

Mysql/leetcode

[Mysql] 이전날보다 낮은 온도인 id 찾기

반응형

바로 이전날보다 낮은 온도인 id를 찾는 방법

select w2.id from weather w1 join weather w2
where date_add(w1.recorddate,interval 1 day) = w2.recorddate and w1.temperature < w2.temperature

date_add()를 쓰면 찾을 수 있다.

 

date_add(date, interval 0 day) 이런식으로 쓸 수 있다.

'Mysql > leetcode' 카테고리의 다른 글

[Mysql] 중복된 값 지우기  (0) 2020.11.15
[Mysql] 2번째로 높은 값 찾기  (0) 2020.11.12
[Mysql] 중복된 값 찾기  (0) 2020.11.12