Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

SQL Schema: Create table Weather ( id int, recordDate date, temperature int ) Truncate table Weather insert into Weather ( id , recordDate, temperature )

SQL Schema:
Create table Weather (id int, recordDate date, temperature int)
Truncate table Weather
insert into Weather (id, recordDate, temperature) values ('1','2015-01-01','10')
insert into Weather (id, recordDate, temperature) values ('2','2015-01-02','25')
insert into Weather (id, recordDate, temperature) values ('3','2015-01-03','20')
insert into Weather (id, recordDate, temperature) values ('4','2015-01-04','30')
Table: Weather
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| id | int |
| recordDate | date |
| temperature | int |
+---------------+---------+
id is the column with unique values for this table.
This table contains information about the temperature on a certain day.
Write a solution to find all dates' Id with higher temperatures compared to its previous dates (yesterday).
Return the result table in any order.
The result format is in the following example.
Example 1:
Input:
Weather table:
+----+------------+-------------+
| id | recordDate | temperature |
+----+------------+-------------+
|1|2015-01-01|10|
|2|2015-01-02|25|
|3|2015-01-03|20|
|4|2015-01-04|30|
+----+------------+-------------+
Output:
+----+
| id |
+----+
|2|
|4|
+----+
Explanation:
In 2015-01-02, the temperature was higher than the previous day (10->25).
In 2015-01-04, the temperature was higher than the previous day (20->30).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions