首页 > 代码库 > Leetcode 197. Rising Temperature
Leetcode 197. Rising Temperature
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 | +----+
思路:
TO_DAYS(date)可以将日期转换成公元后的天数。
# Write your MySQL query statement below select w1.Id from Weather as w1, Weather as w2 WHERE TO_DAYS(w1.Date) = TO_DAYS(w2.Date) + 1 and w1.Temperature > w2.Temperature
Leetcode 197. Rising Temperature
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。