Problem Solving
[LeetCode] Rising Temperature
luminous13
2022. 11. 22. 10:46
문제
풀이
어제보다 기온이 높으면 해당 날짜의 id를 조회하는 문제입니다.
오늘 기온 > 어제 기온인 데이터를 찾으면 됩니다.
어제 데이터와 오늘 데이터를 나란히 비교하기 위해 조인을 사용해야 합니다.
MySQL에서는 날짜 연산 함수로 DATE_ADD, DATE_DIFF 등의 연산자가 있습니다.
1
2
3
4
5
|
select a.id
from weather a
join weather b
on a.recordDate = date_add(b.recorddate, interval 1 day)
where a.temperature > b.temperature;
|
cs |