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 d53e2a4 commit 67d404dCopy full SHA for 67d404d
SQL/SQL-50/Rising_Temperature.sql
@@ -0,0 +1,4 @@
1
+select w2.id as Id
2
+from Weather w1
3
+join Weather w2
4
+on DATEDIFF(w1.recordDate, w2.recordDate) = -1 and w2.temperature > w1.temperature;
0 commit comments