LeeCode197 上公升的溫度

2021-10-21 19:55:07 字數 1171 閱讀 2073

表 weather

+---------------+---------+

| column name | type |

+---------------+---------+

| id | int |

| recorddate | date |

| temperature | int |

+---------------+---------+

id 是這個表的主鍵

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

編寫乙個 sql 查詢,來查詢與之前(昨天的)日期相比溫度更高的所有日期的 id 。

返回結果不要求順序

查詢結果格式如下例:

weather

+----+------------+-------------+

| id | recorddate | temperature |

+----+------------+-------------+

| 1 | 2015-01-01 | 10 |

| 2 | 2015-01-02 | 25 |

| 3 | 2015-01-03 | 20 |

| 4 | 2015-01-04 | 30 |

+----+------------+-------------+

result table:

+----+

| id |

+----+

| 2 |

| 4 |

+----+

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

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

# write your mysql query statement below

select w1.id from weather w1 join weather w2

on datediff(w1.recorddate,w2.recorddate)=1

and w1.temperature > w2.temperature;

Leetc資料庫 197 上公升的溫度

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

上公升的溫度

表 weather column name type idint recorddate date temperature intid 是這個表的主鍵 該錶包含特定日期的溫度資訊 要求 編寫乙個 sql 查詢,來查詢與前一天相比溫度更高的所有日期的 id。result table id 2 4 201...

上公升的溫度 datadiff使用

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