We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c969f4a commit 41ed841Copy full SHA for 41ed841
Day187Question195/Solution.sql
@@ -0,0 +1,5 @@
1
+SELECT w1.id
2
+FROM Weather w1
3
+JOIN Weather w2
4
+ON DATEDIFF(w1.recordDate, w2.recordDate) = 1
5
+WHERE w1.temperature > w2.temperature;
0 commit comments