본문 바로가기
SQL

leetcode 197. Rising Temperature

by 무적김두칠 2022. 3. 17.

1
2
3
4
5
/* Write your PL/SQL query statement below */
select t1.id as id
from Weather t1,Weather t2
where (t1.recordDate-t2.recordDate)=1
and t1.temperature>t2.temperature
cs
반응형

댓글