Mysql – Perform different aggregation functions on different rows of the output returned by group by clause
I came across this question on a coding platform One single table is given. It is of the following format: Temperature_records Record_date Data_type Data_value 2020-07-01 max 92 2020-07-01 min 71 2020-07-01 avg 74 2020-07-02 max 90 2020-07-02 min 67 2020-07-02…