Problem

Table: Weather

1
2
3
4
5
6
7
8
9
+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| id            | int     |
| recordDate    | date    |
| temperature   | int     |
+---------------+---------+
id is the primary key for this table.
This table contains information about the temperature on a certain day.

Write an SQL query to find all dates’ Id with higher temperatures compared to its previous dates (yesterday).

Return the result table in any order.

The query result format is in the following example.

Examples

Example 1:

Input: Weather table:

1
2
3
4
5
6
7
8
+----+------------+-------------+
| id | recordDate | temperature |
+----+------------+-------------+
| 1  | 2015-01-01 | 10          |
| 2  | 2015-01-02 | 25          |
| 3  | 2015-01-03 | 20          |
| 4  | 2015-01-04 | 30          |
+----+------------+-------------+

Output:

1
2
3
4
5
6
+----+
| id |
+----+
| 2  |
| 4  |
+----+

Explanation:

1
2
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).

Solution

Method 1 - Using where clause

Code

1
2
3
SELECT q.id AS id FROM Weather p
JOIN Weather q
WHERE q.recordDate = (p.recordDate + 1) AND q.temperature > p.temperature
1
2
3
SELECT q.id AS id FROM Weather p
JOIN Weather q
WHERE TO_DAYS(q.recordDate) = TO_DAYS(p.recordDate) + 1 AND q.temperature > p.temperature