Skip to content

Commit d95f365

Browse files
authored
Create 197-rising-temperature.sql
1 parent f8533ce commit d95f365

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

197-rising-temperature.sql

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Write your MySQL query statement below
2+
SELECT Weather.Id
3+
FROM Weather
4+
JOIN Weather AS w
5+
ON w.RecordDate = SUBDATE(Weather.RecordDate, 1)
6+
WHERE Weather.Temperature > w.Temperature

0 commit comments

Comments
 (0)