197-rising-temperature

DevGod
Vtuber
# Write your MySQL query statement belowSELECT w1.idFROM Weather w1, Weather w2WHERE DATEDIFF(w1.recordDate, w2.recordDate) = 1AND w1.temperature > w2.temperature;
# Write your MySQL query statement belowSELECT w1.idFROM Weather w1, Weather w2WHERE DATEDIFF(w1.recordDate, w2.recordDate) = 1AND w1.temperature > w2.temperature;