Skip to main content

197. Rising Temperature

Giới thiệu bài toán

Chi tiết: https://leetcode.com/problems/rising-temperature/

Table: Weather

Column NameType
idint
recordDatedate
temperatureint
  • In SQL, id is the primary key for this table.
  • This table contains information about the temperature on a certain day.
Yêu cầu

Find all dates' Id with higher temperatures compared to its previous dates (yesterday).

Return the result table in any order. The result format is in the following example.

Example 1:

Input: Weather table:

idrecordDatetemperature
12015-01-0110
22015-01-0225
32015-01-0320
42015-01-0430

Output:

id
2
4
  • Explanation:
    • In 2015-01-02, the temperature was higher than the previous day (10 -> 25).
    • In 2015-01-04, the temperature was higher than the previous day (20 -> 30).

Giải quyết bài toán

SELECT w1.id 
FROM Weather w1 JOIN Weather w2
ON w1.RecordDate = DATE_ADD(w2.RecordDate, INTERVAL 1 DAY)
WHERE w1.temperature > w2.temperature;

Tham khảo: https://leetcode.com/submissions/detail/1039224990/