Dashboard Temp Share Shortlinks Frames API

HTMLify

Day 24
Views: 13 | Author: djdj
1
2
3
4
5
6
# Write your MySQL query statement below
SELECT w1.id
FROM Weather w1
JOIN Weather w2
  ON DATEDIFF(w1.recordDate, w2.recordDate) = 1
WHERE w1.temperature > w2.temperature;