Mysql AVG 忽略零
我需要对一列执行平均值,但我知道该列中的大多数值都为零。在所有可能的行中,只有两行可能具有正值。我如何告诉 mySQL 忽略零并仅平均实际值?
I need to perform an avg on a column, but I know that most of the values in that column will be zero. Out of all possible rows, only two will probably have positive values. How can I tell mySQL to ignore the zeros and only average the actual values?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以将零转换为
NULL
,然后AVG()
函数将仅适用于非NULL
值。You can convert zeros to
NULL
, thenAVG()
function will work only with notNULL
values.假设您可能不想完全排除此类行(也许它们在您想要聚合的其他列中具有值)
Assuming that you might want to not totally exclude such rows (perhaps they have values in other columns you want to aggregate)
您可能可以通过 WHERE 子句控制它:
You could probably control that via the WHERE clause: