leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE |
0197.sql (134B)
0 SELECT W2.id 1 FROM Weather W1, Weather W2 2 WHERE DATEDIFF(W2.recordDate, W1.recordDate) = 1 AND 3 W1.temperature < W2.temperaturea