24. Rising Temperature
https://leetcode.com/problems/rising-temperature/
Write a solution to find all dates' id with higher temperatures compared to its previous dates (yesterday). Return the result table in any order.
SELECT w2.id FROM Weather w1 join Weather w2 ON DATEDIFF (w2.recordDate ,w1.recordDate ) = 1 AND w2.temperature>w1.temperature
같은 테이블을 두번 조인 후 어제와 비교