All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g0101_0200.s0197_rising_temperature.script.sql Maven / Gradle / Ivy

There is a newer version: 1.24
Show newest version
# Write your MySQL query statement below
# #Easy #Database #SQL_I_Day_6_Union #2022_06_28_Time_342_ms_(93.76%)_Space_0B_(100.00%)
SELECT SecondDate.id as Id
FROM Weather SecondDate JOIN Weather FirstDate
ON ADDDATE(FirstDate.recordDate,1) = SecondDate.recordDate
AND SecondDate.temperature > FirstDate.temperature;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy