码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode - Rising Temperature

时间:2015-04-20 00:32:56      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

  Description:Given a Weather table, write a SQL query to find all dates‘ Ids with higher temperature compared to its previous (yesterday‘s) dates.

  选出比前一天温度高的Id

  使用自连接,to_days函数是返回从零年开始的总天数。

  (为何把=误写成<会Runtime Error啊 不应该是WrongAnser!)

  

# Write your MySQL query statement below
select w2.Id from Weather w1, Weather w2
where to_days(w1.Date)+1=to_days(w2.Date) and w1.Temperature<w2.Temperature;

 

LeetCode - Rising Temperature

标签:

原文地址:http://www.cnblogs.com/wxisme/p/4440332.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!