[MySQL] SQL SELF JOIN & DATE type format
·
IT, Digital
To get to know about SELF JOIN & DATE type format, let's solve Leetcode problem in https://leetcode.com/problems/rising-temperature/ . If you want to know about SELF JOIN, you can go HERE.What this asking for is, "Select 'ID' with a higher temperature than yesterday." And here's the Weather table.Weather table:+----+------------+-------------+| id | recordDate | temperature |+----+------------+-..