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 0702219 commit bf233b1Copy full SHA for bf233b1
leetcode/SQL/No197.sql
@@ -0,0 +1,3 @@
1
+select w1.Id as id from Weather w1, Weather w2
2
+ where DATEDIFF(w1.RecordDate,w2.RecordDate)=1
3
+ and w1.Temperature>w2.Temperature;
0 commit comments