LeetCode MySQL 197. 上升的温度

文章目录

1. 题目

给定一个 Weather 表,编写一个 SQL 查询,来查找与之前(昨天的)日期相比温度更高的所有日期的 Id。

+---------+------------------+------------------+
| Id(INT) | RecordDate(DATE) | Temperature(INT) |
+---------+------------------+------------------+
|       1 |       2015-01-01 |               10 |
|       2 |       2015-01-02 |               25 |
|       3 |       2015-01-03 |               20 |
|       4 |       2015-01-04 |               30 |
+---------+------------------+------------------+
例如,根据上述给定的 Weather 表格,返回如下 Id:

+----+
| Id |
+----+
|  2 |
|  4 |
+----+

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/rising-temperature
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

# Write your MySQL query statement below
select w1.Id
from Weather w1, Weather w2
where date_sub(w1.RecordDate, interval 1 day) = w2.RecordDate
        and w1.Temperature > w2.Temperature

or

# Write your MySQL query statement below
select w1.Id
from Weather w1, Weather w2
where datediff(w1.RecordDate, w2.RecordDate) = 1
        and w1.Temperature > w2.Temperature

or

# Write your MySQL query statement below
select w1.Id
from Weather w1, Weather w2
where date_add(w2.RecordDate, interval 1 day) = w1.RecordDate
        and w1.Temperature > w2.Temperature

我的CSDN博客地址 https://michael.blog.csdn.net/

长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!
Michael阿明

猜你喜欢

转载自blog.csdn.net/qq_21201267/article/details/107450633