-
Notifications
You must be signed in to change notification settings - Fork 43
/
rising-temperature.sql
41 lines (38 loc) · 1.17 KB
/
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
# https://leetcode.com/problems/rising-temperature/description/
# Time: O(n^2)
# Space: O(n)
#
# Given a Weather table, write a SQL query to find all dates'
# Ids with higher temperature compared to its previous (yesterday's) dates.
#
# +---------+------------+------------------+
# | Id(INT) | Date(DATE) | Temperature(INT) |
# +---------+------------+------------------+
# | 1 | 2015-01-01 | 10 |
# | 2 | 2015-01-02 | 25 |
# | 3 | 2015-01-03 | 20 |
# | 4 | 2015-01-04 | 30 |
# +---------+------------+------------------+
# For example, return the following Ids for the above Weather table:
# +----+
# | Id |
# +----+
# | 2 |
# | 4 |
# +----+
#
/* V1 */
select b.Id from Weather a
inner join Weather b
on TO_DAYS(a.RecordDate) = TO_DAYS(b.RecordDate) -1
where (b.Temperature) > (a.Temperature)
/* V2 */
select b.Id from Weather a
inner join Weather b
where TO_DAYS(a.RecordDate) = TO_DAYS(b.RecordDate) -1
and (b.Temperature) > (a.Temperature)
/* V3 */
SELECT wt1.Id
FROM Weather wt1, Weather wt2
WHERE wt1.Temperature > wt2.Temperature AND
TO_DAYS(wt1.RecordDate)-TO_DAYS(wt2.RecordDate)=1;