上公升的溫度

2022-07-09 04:12:11 字數 631 閱讀 2036

表 weather:

column name

type

idint

recorddate

date

temperature

intid 是這個表的主鍵

該錶包含特定日期的溫度資訊

要求:編寫乙個 sql 查詢,來查詢與前一天相比溫度更高的所有日期的 id。

result table:

+----+

| id |

+----+

| 2 |

| 4 |

+----+

2015-01-02 的溫度比前一天高(10 -> 25)

2015-01-04 的溫度比前一天高(30 -> 20)

題解:

select w1.id

from weather w1 join weather w2

on date_format(date_sub(w1.recorddate,interval 1 day),'%y-%m-%d') = date_format(w2.recorddate,'%y-%m-%d') and w1.temperature > w2.temperature ;

上公升的溫度 datadiff使用

上公升的溫度 要求 來查詢與之前 昨天的 日期相比溫度更高的所有日期的 id 返回結果不要求順序 題目 表 weather column name type id int recorddate date temperature int id 是這個表的主鍵 該錶包含特定日期的溫度資訊資料如下 wea...

LeeCode197 上公升的溫度

表 weather column name type id int recorddate date temperature int id 是這個表的主鍵 該錶包含特定日期的溫度資訊編寫乙個 sql 查詢,來查詢與之前 昨天的 日期相比溫度更高的所有日期的 id 返回結果不要求順序。查詢結果格式如下例...

Leetc資料庫 197 上公升的溫度

給定乙個 weather 表,編寫乙個 sql 查詢,來查詢與之前 昨天的 日期相比溫度更高的所有日期的 id。例如,根據上述給定的 weather 返回如下 id 關聯兩個weqther,date1比date2大一天且temperature1 temperature sql如下 select a....