-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeetCode_197_Rising Temperature.sql
executable file
·54 lines (41 loc) · 1.74 KB
/
LeetCode_197_Rising Temperature.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
Create table If Not Exists Weather (Id int, RecordDate date, Temperature int)
Truncate table Weather
insert into Weather (Id, RecordDate, Temperature) values ('1', '2015-01-01', '10')
insert into Weather (Id, RecordDate, Temperature) values ('2', '2015-01-02', '25')
insert into Weather (Id, RecordDate, Temperature) values ('3', '2015-01-03', '20')
insert into Weather (Id, RecordDate, Temperature) values ('4', '2015-01-04', '30')
-- Table: Weather
-- +---------------+---------+
-- | Column Name | Type |
-- +---------------+---------+
-- | id | int |
-- | recordDate | date |
-- | temperature | int |
-- +---------------+---------+
-- id is the primary key for this table.
-- This table contains information about the temperature in a certain day.
-- Write an SQL query to find all dates id with higher temperature compared to its previous dates (yesterday).
-- Return the result table in any order.
-- The query result format is in the following example:
-- Weather
-- +----+------------+-------------+
-- | id | recordDate | Temperature |
-- +----+------------+-------------+
-- | 1 | 2015-01-01 | 10 |
-- | 2 | 2015-01-02 | 25 |
-- | 3 | 2015-01-03 | 20 |
-- | 4 | 2015-01-04 | 30 |
-- +----+------------+-------------+
-- Result table:
-- +----+
-- | id |
-- +----+
-- | 2 |
-- | 4 |
-- +----+
-- In 2015-01-02, temperature was higher than the previous day (10 -> 25).
-- In 2015-01-04, temperature was higher than the previous day (20 -> 30).
-- Write your MySQL query statement below
select t1.id from Weather t1 inner join Weather t2 on
TO_DAYS(t1.recordDate) = TO_DAYS(t2.recordDate) + 1
where t1.Temperature > t2.Temperature