SQL查詢練習一(From LeetCode)

 請選用MySQL進行測試. 1.找出後一天比前一天溫度高的日期(E) 思路:將該表進行自關聯,然後選擇出日期靠後的一天,最後選擇溫度高的日期 1 select Weather.Id 2 from Weather join Weather w 3 on datediff(Weather.Date,w.Date) = 1 4 and Weather.Temperature > w.Temperatu
相關文章
相關標籤/搜索