Mysql AVG 忽略零

发布于 2024-10-24 05:03:03 字数 78 浏览 2 评论 0原文

我需要对一列执行平均值,但我知道该列中的大多数值都为零。在所有可能的行中,只有两行可能具有正值。我如何告诉 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

っ〆星空下的拥抱 2024-10-31 05:03:04
select avg(your_column) 
from your_table 
where your_column != 0
select avg(your_column) 
from your_table 
where your_column != 0
残花月 2024-10-31 05:03:04

您可以将零转换为 NULL,然后 AVG() 函数将仅适用于非 NULL 值。

UPDATE table SET column = NULL WHERE column='0';
SELECT AVG(column) FROM table;

You can convert zeros to NULL, then AVG() function will work only with not NULL values.

UPDATE table SET column = NULL WHERE column='0';
SELECT AVG(column) FROM table;
多情癖 2024-10-31 05:03:03

假设您可能不想完全排除此类行(也许它们在您想要聚合的其他列中具有值)

SELECT AVG(NULLIF(field ,0)) 
from table

Assuming that you might want to not totally exclude such rows (perhaps they have values in other columns you want to aggregate)

SELECT AVG(NULLIF(field ,0)) 
from table
寄居人 2024-10-31 05:03:03

您可能可以通过 WHERE 子句控制它:

select avg( field ) from table where field > 0

You could probably control that via the WHERE clause:

select avg( field ) from table where field > 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文