You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Used INNER JOIN to compare two sets of data from the same table (Weather). This joins records from w1 where the recordDate is one day greater than the recordDate in w2.
-- Then to identify days with a temperature increase I have used WHERE clause to filter the joined data to only include records where w1.temperature is greater than w2.temperature.
-- Retrieves the id of records that meet the temperature increase criteria.