leetcode刷题MySQL题解十一

Posted hhh江月

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题MySQL题解十一相关的知识,希望对你有一定的参考价值。

leetcode刷题mysql题解十一

题目叙述

表: Weather

±--------------±--------+
| Column Name | Type |
±--------------±--------+
| id | int |
| recordDate | date |
| temperature | int |
±--------------±--------+
id 是这个表的主键
该表包含特定日期的温度信息

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

返回结果 不要求顺序 。

查询结果格式如下例。

示例 1:

输入:
Weather 表:
±—±-----------±------------+
| id | recordDate | Temperature |
±—±-----------±------------+
| 1 | 2015-01-01 | 10 |
| 2 | 2015-01-02 | 25 |
| 3 | 2015-01-03 | 20 |
| 4 | 2015-01-04 | 30 |
±—±-----------±------------+
输出:
±—+
| id |
±—+
| 2 |
| 4 |
±—+
解释:
2015-01-02 的温度比前一天高(10 -> 25)
2015-01-04 的温度比前一天高(20 -> 30)

题目解答

# Write your MySQL query statement below
# need two selections
select w1.id from weather w1, weather w2 where w1.temperature > w2.temperature and to_days(w1.recorddate) - 1 = to_days(w2.recorddate);



题目运行结果

以上是关于leetcode刷题MySQL题解十一的主要内容,如果未能解决你的问题,请参考以下文章

leetcode刷题MySQL题解二十一

leetcode刷题MySQL题解二十一

leetcode刷题MySQL题解十二

leetcode刷题MySQL题解十三

leetcode刷题MySQL题解十

leetcode刷题MySQL题解十