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.
2 parents d79de5a + cc6ad67 commit a140833Copy full SHA for a140833
197. Rising Temperature
@@ -0,0 +1,7 @@
1
+SELECT today.id
2
+FROM Weather yesterday
3
+CROSS JOIN Weather today
4
+
5
+WHERE DATEDIFF(today.recordDate,yesterday.recordDate) = 1
6
+ AND today.temperature > yesterday.temperature
7
+;
0 commit comments