My LeetCode grinding. Trying to do a problem a day.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.sql 136B

123
  1. SELECT w1.Id AS Id FROM Weather w1
  2. JOIN Weather w2 ON DATEDIFF(w1.RecordDate, w2.RecordDate) = 1
  3. WHERE w1.Temperature > w2.Temperature;