如何用纯mysql计算多行的列值?

发布于 2024-09-14 07:43:00 字数 133 浏览 2 评论 0原文

假设表

user_id | hits

我可以让 MySQL 返回 Select 查询的总命中数吗?我知道我可以将它们与 php 或类似的东西添加在一起,只是想知道是否有纯粹的 MySQL 方式?

hypothetic tables

user_id | hits

Can I get MySQL to return the total hits of a Select query? I know i could add them together with php or similar, just wondering if there is a pure MySQL way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

秋千易 2024-09-21 07:43:00
 Total hits per user

 SELECT userId, Sum(Hits)
 FROM Table
 GROUP by userId

 OR 

 Total hits

 SELECT Sum(Hits)
 FROM Table
 Total hits per user

 SELECT userId, Sum(Hits)
 FROM Table
 GROUP by userId

 OR 

 Total hits

 SELECT Sum(Hits)
 FROM Table
耶耶耶 2024-09-21 07:43:00
select sum(hits) from ...
select sum(hits) from ...
深空失忆 2024-09-21 07:43:00

根据您使用的特定 SQL 查询,您可以 SUM 列或可能使用 'WITH ROLLUP' GROUP 修饰符(如果您需要查询范围内的总计)。

Depending on the specific SQL query you're using you could either SUM a column or potentially use the 'WITH ROLLUP' GROUP modifier if you require a query-wide total.

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