Answer the question
In order to leave comments, you need to log in
How to form a MySQL query to display average daily values for the current month?
There is a table with sensor data that is added to the table every 30 minutes. What query should be to display the average data for each day of the month?
Answer the question
In order to leave comments, you need to log in
SELECT DATE(timestamp), AVG(value) ...
FROM table
GROUP BY DATE(timestamp)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question