我每 1-3 秒用 unix 时间戳记录我的温度,我希望每 1 分钟平均返回一行数据,并持续 24 小时。
我的记录器表如下所示:
unixtime temp
1350899052 25.37
1350899054 25.44
1350899057 25.44
1350899059 25.44
1350899062 25.44
1350899064 25.44
1350899069 25.44
1350899071 25.44
我希望像它一样返回
unixtime temp
1350899052 25.37 -- average value of 1 minute range both unixtime and temp
1350899054 25.44
1350899057 25.44
请告知我应该如何执行 mySQL 命令?谢谢。