Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 271 Bytes

197. Rising Temperature.md

File metadata and controls

7 lines (7 loc) · 271 Bytes

197. Rising Temperature

Question Link

# Write your MySQL query statement below
select w1.id from Weather w1, Weather w2
where datediff(w1.recordDate, w2.recordDate) = 1 and w1.temperature > w2.temperature