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
Back To Top
Search