每天最小/最大/ AVG SQL

时间:2018-09-16 19:14:58

标签: mysql

我有一个SQL表,其ID:DATETIME(时间戳)TEMP。每天多次记录。 SELECT命令每天提取最小/最大和平均值的方式是什么? 非常感谢。

1 个答案:

答案 0 :(得分:0)

您将使用group by,但需要提取日期:

select date(datetime) as the_date, min(temp), max(temp), avg(temp)
from t
group by the_date;