skip to Main Content

MYSQL get max. values from a specific date

I have a table with multi-year data of temperature measurement. Looking for the highest measured temperatures including the date of recording from the current year only. Tried following: SELECT timestamp, temperature AS max_temp FROM table WHERE temperature = (SELECT max(temperature)…

VIEW QUESTION

MYSQL Min Max Historic Values

I have a MYSQL table with this format: Insurance Date Value A 2020-01-01 2 A 2020-02-01 5 A 2020-03-01 4 A 2020-04-01 6 A 2020-05-01 8 A 2020-06-01 1 A 2020-07-01 3 A 2020-08-01 7 A 2020-09-01 9 A 2020-10-01…

VIEW QUESTION
Back To Top
Search