如何用纯mysql计算多行的列值?
假设表
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据您使用的特定 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.