如何使用MySQL计算一条记录的平均值
发布网友
发布时间:2022-04-23 17:34
我来回答
共2个回答
热心网友
时间:2022-04-09 21:36
计算一条记录的平均值实际上就是横向求平均值,可以参考下例:
select id, (col1+col2+ col3)/3 as avgVal from T1 where id=123;
热心网友
时间:2022-04-09 22:54
这是前4天的平均值,这个update语句不太好写呀,感觉你这个表设计有点问题
select avg(albvalue) from tablename where date between date_sub(date, interval 4 day) and date;