LeetCode SQL 197. 上升的温度
Posted Alex_996
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode SQL 197. 上升的温度相关的知识,希望对你有一定的参考价值。
题目链接:197. 上升的温度
Ideas
思路:用
datediff
将今天的记录和昨天的记录拼接起来,然后加一个and
条件筛选。
Code
mysql
select w1.id from weather as w1 join weather as w2 on datediff(w1.recordDate, w2.recordDate) = 1 and w1.Temperature > w2.Temperature;
以上是关于LeetCode SQL 197. 上升的温度的主要内容,如果未能解决你的问题,请参考以下文章
leetcode197 上升的温度 Rising Temperature