We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9ef846 commit 310966eCopy full SHA for 310966e
197-rising-temperature.sql
@@ -0,0 +1,11 @@
1
+# Write your MySQL query statement below
2
+SELECT
3
+ w1.id
4
+FROM
5
+ Weather w1
6
+JOIN
7
+ Weather w2
8
+ON
9
+ DATEDIFF(w1.recordDate, w2.recordDate) = 1
10
+WHERE
11
+ w1.temperature > w2.temperature;
0 commit comments