Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 241 Bytes

Rising Temperature.md

File metadata and controls

11 lines (8 loc) · 241 Bytes

문제보기

🔎문제 풀이 MySQL

SELECT w1.id
FROM Weather AS w1 , Weather AS w2
WHERE w1.Temperature > w2.Temperature AND DATEDIFF(w1.recordDate , w2.recordDate) = 1