Home >Database >Mysql Tutorial >请教mysql统计每天平均值进行运算问题

请教mysql统计每天平均值进行运算问题

WBOY
WBOYOriginal
2016-06-06 09:34:271481browse

mysqlsql数据

用一个数据表统计温度来计算积温问题。

例如:昨天有五个温度值:10.4,10.6,10.8,10.9,11.0,今天统计三个温度:8.2,6.7,5.4。设一个特定值为5.
则从昨天到今天的积温就是:((10.4+10.6+10.8+10.9+11.0)/5-5)+((8.2+6.7+5.4)/3-5),依次类推。
sql语句应该怎么写?求教

现有数据表结构如下图,time是时间字段,ch01为数据:
图片说明

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn